blob: 75e2a7d79cc0fc392c1b8df1ac478c53bd679f60 [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 \
Jiwen 'Steve' Cai960bcff2017-04-04 15:02:04 -070012 libnativewindow \
Jiwen 'Steve' Cai2d82ceb2017-03-22 17:26:00 -070013
14static_libraries := \
15 libdvr \
16 libbufferhubqueue \
17 libbufferhub \
18 libchrome \
19 libdvrcommon \
20 libpdx_default_transport \
21
22include $(CLEAR_VARS)
23LOCAL_SRC_FILES := dvr_buffer_queue-test.cpp
24LOCAL_STATIC_LIBRARIES := $(static_libraries)
25LOCAL_SHARED_LIBRARIES := $(shared_libraries)
26LOCAL_EXPORT_C_INCLUDE_DIRS := ${LOCAL_C_INCLUDES}
27LOCAL_CFLAGS := -DLOG_TAG=\"dvr_buffer_queue-test\" -DTRACE=0 -O0 -g
28LOCAL_MODULE := dvr_buffer_queue-test
29LOCAL_MODULE_TAGS := optional
30include $(BUILD_NATIVE_TEST)