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 \ |
| 20 | libpdx_default_transport \ |
| 21 | |
| 22 | include $(CLEAR_VARS) |
| 23 | LOCAL_SRC_FILES := dvr_buffer_queue-test.cpp |
| 24 | LOCAL_STATIC_LIBRARIES := $(static_libraries) |
| 25 | LOCAL_SHARED_LIBRARIES := $(shared_libraries) |
| 26 | LOCAL_EXPORT_C_INCLUDE_DIRS := ${LOCAL_C_INCLUDES} |
| 27 | LOCAL_CFLAGS := -DLOG_TAG=\"dvr_buffer_queue-test\" -DTRACE=0 -O0 -g |
| 28 | LOCAL_MODULE := dvr_buffer_queue-test |
| 29 | LOCAL_MODULE_TAGS := optional |
| 30 | include $(BUILD_NATIVE_TEST) |