blob: 158d58ff745b62030137503fe17a51a6fa52cbf1 [file] [log] [blame]
Jiwen 'Steve' Cai2d82ceb2017-03-22 17:26:00 -07001LOCAL_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 libdvr \
15 libbufferhubqueue \
16 libbufferhub \
17 libchrome \
18 libdvrcommon \
19 libpdx_default_transport \
20
21include $(CLEAR_VARS)
22LOCAL_SRC_FILES := dvr_buffer_queue-test.cpp
23LOCAL_STATIC_LIBRARIES := $(static_libraries)
24LOCAL_SHARED_LIBRARIES := $(shared_libraries)
25LOCAL_EXPORT_C_INCLUDE_DIRS := ${LOCAL_C_INCLUDES}
26LOCAL_CFLAGS := -DLOG_TAG=\"dvr_buffer_queue-test\" -DTRACE=0 -O0 -g
27LOCAL_MODULE := dvr_buffer_queue-test
28LOCAL_MODULE_TAGS := optional
29include $(BUILD_NATIVE_TEST)