Jiwen 'Steve' Cai | 2d82ceb | 2017-03-22 17:26:00 -0700 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | shared_libraries := \ |
| 4 | libbase \ |
| 5 | libbinder \ |
| 6 | libcutils \ |
| 7 | libgui \ |
| 8 | liblog \ |
| 9 | libhardware \ |
| 10 | libui \ |
| 11 | libutils \ |
Jiwen 'Steve' Cai | 960bcff | 2017-04-04 15:02:04 -0700 | [diff] [blame] | 12 | libnativewindow \ |
Jiwen 'Steve' Cai | 2d82ceb | 2017-03-22 17:26:00 -0700 | [diff] [blame] | 13 | |
| 14 | static_libraries := \ |
| 15 | libdvr \ |
| 16 | libbufferhubqueue \ |
| 17 | libbufferhub \ |
| 18 | libchrome \ |
| 19 | libdvrcommon \ |
Hendrik Wagenaar | eaa5522 | 2017-04-06 10:56:23 -0700 | [diff] [blame^] | 20 | libdisplay \ |
Jiwen 'Steve' Cai | 2d82ceb | 2017-03-22 17:26:00 -0700 | [diff] [blame] | 21 | libpdx_default_transport \ |
| 22 | |
| 23 | include $(CLEAR_VARS) |
Hendrik Wagenaar | eaa5522 | 2017-04-06 10:56:23 -0700 | [diff] [blame^] | 24 | LOCAL_SRC_FILES := \ |
| 25 | dvr_buffer_queue-test.cpp \ |
| 26 | dvr_named_buffer-test.cpp \ |
| 27 | |
Jiwen 'Steve' Cai | 2d82ceb | 2017-03-22 17:26:00 -0700 | [diff] [blame] | 28 | LOCAL_STATIC_LIBRARIES := $(static_libraries) |
| 29 | LOCAL_SHARED_LIBRARIES := $(shared_libraries) |
| 30 | LOCAL_EXPORT_C_INCLUDE_DIRS := ${LOCAL_C_INCLUDES} |
Hendrik Wagenaar | eaa5522 | 2017-04-06 10:56:23 -0700 | [diff] [blame^] | 31 | LOCAL_CFLAGS := -DLOG_TAG=\"dvr_api-test\" -DTRACE=0 -O0 -g |
| 32 | LOCAL_MODULE := dvr_api-test |
Jiwen 'Steve' Cai | 2d82ceb | 2017-03-22 17:26:00 -0700 | [diff] [blame] | 33 | LOCAL_MODULE_TAGS := optional |
| 34 | include $(BUILD_NATIVE_TEST) |