Home | History | Annotate | Download | only in cppallocation
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SDK_VERSION := 8
      5 LOCAL_NDK_STL_VARIANT := stlport_static
      6 
      7 LOCAL_SRC_FILES:= \
      8 	multiply.rs \
      9 	compute.cpp
     10 
     11 LOCAL_STATIC_LIBRARIES := \
     12 	libRScpp_static
     13 
     14 LOCAL_CFLAGS := -std=c++11
     15 LOCAL_LDFLAGS += -llog -ldl
     16 
     17 LOCAL_MODULE:= rstest-cppallocation
     18 
     19 LOCAL_MODULE_TAGS := tests
     20 
     21 intermediates := $(call intermediates-dir-for,STATIC_LIBRARIES,libRS,TARGET,)
     22 
     23 LOCAL_C_INCLUDES += frameworks/rs/cpp
     24 LOCAL_C_INCLUDES += frameworks/rs
     25 LOCAL_C_INCLUDES += $(intermediates)
     26 
     27 LOCAL_CLANG := true
     28 
     29 include $(BUILD_EXECUTABLE)
     30 
     31