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