1 2 LOCAL_PATH:= $(call my-dir) 3 4 include $(CLEAR_VARS) 5 6 LOCAL_MODULE:= shared_mem_test 7 8 LOCAL_SRC_FILES := \ 9 shared_mem_test.cpp 10 11 LOCAL_SHARED_LIBRARIES := \ 12 libc \ 13 libcutils \ 14 libutils \ 15 libbinder \ 16 libhardware_legacy \ 17 libmedia 18 19 LOCAL_MODULE_TAGS := tests 20 21 LOCAL_CFLAGS += -Wall -Werror -Wno-error=deprecated-declarations -Wunused -Wunreachable-code 22 23 include $(BUILD_EXECUTABLE) 24