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 latency.rs \ 9 latency.cpp 10 11 LOCAL_STATIC_LIBRARIES := \ 12 libRScpp_static 13 14 LOCAL_LDFLAGS += -llog -ldl 15 16 LOCAL_MODULE:= rstest-latency 17 18 LOCAL_MODULE_TAGS := tests 19 20 intermediates := $(call intermediates-dir-for,STATIC_LIBRARIES,libRS,TARGET,) 21 22 LOCAL_C_INCLUDES += frameworks/rs/cpp 23 LOCAL_C_INCLUDES += frameworks/rs 24 LOCAL_C_INCLUDES += $(intermediates) 25 26 LOCAL_CLANG := true 27 28 include $(BUILD_EXECUTABLE) 29 30