1 LOCAL_PATH:= $(call my-dir) 2 include $(CLEAR_VARS) 3 4 LOCAL_SRC_FILES:= \ 5 refresh.c 6 7 LOCAL_SHARED_LIBRARIES := \ 8 libcutils 9 10 LOCAL_MODULE:= test-fb-refresh 11 12 LOCAL_MODULE_TAGS := optional 13 14 include $(BUILD_EXECUTABLE) 15 16 ## 17 18 include $(CLEAR_VARS) 19 LOCAL_SRC_FILES := fb_test.c 20 LOCAL_MODULE = test-fb-simple 21 LOCAL_MODULE_TAGS := optional 22 LOCAL_FORCE_STATIC_EXECUTABLE := true 23 LOCAL_STATIC_LIBRARIES := libc 24 include $(BUILD_EXECUTABLE) 25 26 include $(CLEAR_VARS) 27 LOCAL_SRC_FILES := mdp_test.c 28 LOCAL_MODULE = test-mdp 29 LOCAL_MODULE_TAGS := optional 30 LOCAL_FORCE_STATIC_EXECUTABLE := true 31 LOCAL_STATIC_LIBRARIES := libc 32 include $(BUILD_EXECUTABLE) 33