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 liblog \ 14 libcutils \ 15 libutils \ 16 libbinder \ 17 libhardware_legacy \ 18 libmedia \ 19 libaudioclient \ 20 21 LOCAL_MODULE_TAGS := tests 22 23 LOCAL_CFLAGS += -Wall -Werror -Wno-error=deprecated-declarations -Wunused -Wunreachable-code 24 25 include $(BUILD_EXECUTABLE) 26