Alex Vakulenko | e4eec20 | 2017-01-27 14:41:04 -0800 | [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 \ |
| 12 | |
| 13 | static_libraries := \ |
| 14 | libbufferhubqueue \ |
| 15 | libbufferhub \ |
| 16 | libchrome \ |
| 17 | libdvrcommon \ |
| 18 | libpdx_default_transport \ |
| 19 | |
| 20 | include $(CLEAR_VARS) |
| 21 | LOCAL_SRC_FILES := buffer_hub_queue-test.cpp |
| 22 | LOCAL_STATIC_LIBRARIES := $(static_libraries) |
| 23 | LOCAL_SHARED_LIBRARIES := $(shared_libraries) |
| 24 | LOCAL_EXPORT_C_INCLUDE_DIRS := ${LOCAL_C_INCLUDES} |
| 25 | LOCAL_CFLAGS := -DTRACE=0 -O0 -g |
| 26 | LOCAL_MODULE := buffer_hub_queue-test |
| 27 | LOCAL_MODULE_TAGS := optional |
| 28 | include $(BUILD_NATIVE_TEST) |
| 29 | |
| 30 | include $(CLEAR_VARS) |
| 31 | LOCAL_SRC_FILES := buffer_hub_queue_producer-test.cpp |
| 32 | LOCAL_STATIC_LIBRARIES := $(static_libraries) |
| 33 | LOCAL_SHARED_LIBRARIES := $(shared_libraries) |
| 34 | LOCAL_EXPORT_C_INCLUDE_DIRS := ${LOCAL_C_INCLUDES} |
| 35 | LOCAL_CFLAGS := -DTRACE=0 -O0 -g |
| 36 | LOCAL_MODULE := buffer_hub_queue_producer-test |
| 37 | LOCAL_MODULE_TAGS := optional |
| 38 | include $(BUILD_NATIVE_TEST) |