blob: 3507434c13d40fc0804293a6dc88602720a3d39a [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 \
13 libcutils \
14 libutils \
15 libbinder \
16 libhardware_legacy \
17 libmedia
18
Eric Laurentd5da9de2010-06-27 18:46:25 -070019LOCAL_MODULE_TAGS := tests
20
Glenn Kasten85d99542015-05-18 12:27:57 -070021LOCAL_CFLAGS += -Wall -Werror -Wno-error=deprecated-declarations -Wunused -Wunreachable-code
Eric Laurentd5da9de2010-06-27 18:46:25 -070022
Andreas Gampea4a13482014-11-10 18:44:43 -080023include $(BUILD_EXECUTABLE)