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