Home | History | Annotate | Download | only in cpp-globalguard
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_MODULE:= rstest-cpp-globalguard
      5 
      6 LOCAL_SDK_VERSION := 21
      7 LOCAL_NDK_STL_VARIANT := stlport_static
      8 
      9 LOCAL_SRC_FILES:= \
     10 	multiply.rs \
     11 	compute.cpp
     12 
     13 LOCAL_STATIC_LIBRARIES := \
     14 	libRScpp_static
     15 
     16 LOCAL_LDFLAGS += -llog
     17 
     18 include frameworks/rs/tests/cpp_api/common.mk
     19 include $(BUILD_EXECUTABLE)
     20