blob: 01e42bd2e107e6bf046a808b7d612f9ec18da5df [file] [log] [blame]
Eric Laurentd5da9de2010-06-27 18:46:25 -07001
2LOCAL_PATH:= $(call my-dir)
3
4include $(CLEAR_VARS)
5
6LOCAL_MODULE:= shared_mem_test
Andreas Gampea4a13482014-11-10 18:44:43 -08007
Eric Laurentd5da9de2010-06-27 18:46:25 -07008LOCAL_SRC_FILES := \
Andreas Gampea4a13482014-11-10 18:44:43 -08009 shared_mem_test.cpp
10
Eric Laurentd5da9de2010-06-27 18:46:25 -070011LOCAL_SHARED_LIBRARIES := \
Andreas Gampea4a13482014-11-10 18:44:43 -080012 libc \
Dimitry Ivanov5a06e372016-02-12 16:44:33 -080013 liblog \
Andreas Gampea4a13482014-11-10 18:44:43 -080014 libcutils \
15 libutils \
16 libbinder \
17 libhardware_legacy \
Marco Nelissen74abdda2016-11-03 10:58:33 -070018 libmedia \
19 libaudioclient \
Andreas Gampea4a13482014-11-10 18:44:43 -080020
Eric Laurentd5da9de2010-06-27 18:46:25 -070021LOCAL_MODULE_TAGS := tests
22
Glenn Kasten85d99542015-05-18 12:27:57 -070023LOCAL_CFLAGS += -Wall -Werror -Wno-error=deprecated-declarations -Wunused -Wunreachable-code
Eric Laurentd5da9de2010-06-27 18:46:25 -070024
Andreas Gampea4a13482014-11-10 18:44:43 -080025include $(BUILD_EXECUTABLE)