26 lines
443 B
Makefile
26 lines
443 B
Makefile
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE:= shared_mem_test
|
|
|
|
LOCAL_SRC_FILES := \
|
|
shared_mem_test.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libc \
|
|
liblog \
|
|
libcutils \
|
|
libutils \
|
|
libbinder \
|
|
libhardware_legacy \
|
|
libmedia \
|
|
libaudioclient \
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_CFLAGS += -Wall -Werror -Wno-error=deprecated-declarations -Wunused -Wunreachable-code
|
|
|
|
include $(BUILD_EXECUTABLE)
|