1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES:= \ 5 mono.rs \ 6 compute.cpp 7 8LOCAL_SHARED_LIBRARIES := \ 9 libRScpp \ 10 libstlport 11 12LOCAL_MODULE:= rstest-compute-shared 13 14LOCAL_MODULE_TAGS := tests 15 16intermediates := $(call intermediates-dir-for,STATIC_LIBRARIES,libRS,TARGET,) 17 18LOCAL_C_INCLUDES += external/stlport/stlport bionic/ bionic/libstdc++/include 19LOCAL_C_INCLUDES += frameworks/rs/cpp 20LOCAL_C_INCLUDES += frameworks/rs 21LOCAL_C_INCLUDES += $(intermediates) 22 23LOCAL_CLANG := true 24 25include $(BUILD_EXECUTABLE) 26 27