blob: 59061e6cf073f898d991d188ae03f472eb4cf3c9 [file] [log] [blame]
Alex Vakulenkoe4eec202017-01-27 14:41:04 -08001LOCAL_PATH := $(call my-dir)
2
3shared_libraries := \
4 libbase \
5 libbinder \
6 libcutils \
7 libgui \
8 liblog \
9 libhardware \
10 libui \
11 libutils \
12
13static_libraries := \
14 libbufferhubqueue \
15 libbufferhub \
16 libchrome \
17 libdvrcommon \
18 libpdx_default_transport \
19
20include $(CLEAR_VARS)
21LOCAL_SRC_FILES := buffer_hub_queue-test.cpp
22LOCAL_STATIC_LIBRARIES := $(static_libraries)
23LOCAL_SHARED_LIBRARIES := $(shared_libraries)
24LOCAL_EXPORT_C_INCLUDE_DIRS := ${LOCAL_C_INCLUDES}
25LOCAL_CFLAGS := -DTRACE=0 -O0 -g
26LOCAL_MODULE := buffer_hub_queue-test
27LOCAL_MODULE_TAGS := optional
28include $(BUILD_NATIVE_TEST)
29
30include $(CLEAR_VARS)
31LOCAL_SRC_FILES := buffer_hub_queue_producer-test.cpp
32LOCAL_STATIC_LIBRARIES := $(static_libraries)
33LOCAL_SHARED_LIBRARIES := $(shared_libraries)
34LOCAL_EXPORT_C_INCLUDE_DIRS := ${LOCAL_C_INCLUDES}
35LOCAL_CFLAGS := -DTRACE=0 -O0 -g
36LOCAL_MODULE := buffer_hub_queue_producer-test
37LOCAL_MODULE_TAGS := optional
38include $(BUILD_NATIVE_TEST)