blob: 29cdc130c2aa7551d2d6bf88e88864f6c93340a3 [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 \
Hendrik Wagenaareaa55222017-04-06 10:56:23 -070020 libdisplay \
Jiwen 'Steve' Cai2d82ceb2017-03-22 17:26:00 -070021 libpdx_default_transport \
22
23include $(CLEAR_VARS)
Hendrik Wagenaareaa55222017-04-06 10:56:23 -070024LOCAL_SRC_FILES := \
25 dvr_buffer_queue-test.cpp \
26 dvr_named_buffer-test.cpp \
27
Jiwen 'Steve' Cai2d82ceb2017-03-22 17:26:00 -070028LOCAL_STATIC_LIBRARIES := $(static_libraries)
29LOCAL_SHARED_LIBRARIES := $(shared_libraries)
30LOCAL_EXPORT_C_INCLUDE_DIRS := ${LOCAL_C_INCLUDES}
Hendrik Wagenaareaa55222017-04-06 10:56:23 -070031LOCAL_CFLAGS := -DLOG_TAG=\"dvr_api-test\" -DTRACE=0 -O0 -g
32LOCAL_MODULE := dvr_api-test
Jiwen 'Steve' Cai2d82ceb2017-03-22 17:26:00 -070033LOCAL_MODULE_TAGS := optional
34include $(BUILD_NATIVE_TEST)