1 LOCAL_PATH:= $(call my-dir) 2 include $(CLEAR_VARS) 3 4 LOCAL_SRC_FILES:= \ 5 fingerprint_tests.cpp \ 6 7 LOCAL_SHARED_LIBRARIES := \ 8 liblog \ 9 libhardware \ 10 11 #LOCAL_C_INCLUDES += \ 12 # system/media/camera/include \ 13 14 LOCAL_CFLAGS += -Wall -Wextra 15 16 LOCAL_MODULE:= fingerprint_tests 17 LOCAL_MODULE_TAGS := tests 18 19 include $(BUILD_NATIVE_TEST) 20