Andy Hung | 546734b | 2014-04-01 18:31:42 -0700 | [diff] [blame^] | 1 | # Build the unit tests for audioflinger |
| 2 | |
| 3 | LOCAL_PATH:= $(call my-dir) |
| 4 | include $(CLEAR_VARS) |
| 5 | |
| 6 | LOCAL_SHARED_LIBRARIES := \ |
| 7 | liblog \ |
| 8 | libutils \ |
| 9 | libcutils \ |
| 10 | libstlport \ |
| 11 | libaudioutils \ |
| 12 | libaudioresampler |
| 13 | |
| 14 | LOCAL_STATIC_LIBRARIES := \ |
| 15 | libgtest \ |
| 16 | libgtest_main |
| 17 | |
| 18 | LOCAL_C_INCLUDES := \ |
| 19 | bionic \ |
| 20 | bionic/libstdc++/include \ |
| 21 | external/gtest/include \ |
| 22 | external/stlport/stlport \ |
| 23 | frameworks/av/services/audioflinger |
| 24 | |
| 25 | LOCAL_SRC_FILES := \ |
| 26 | resampler_tests.cpp |
| 27 | |
| 28 | LOCAL_MODULE := resampler_tests |
| 29 | LOCAL_MODULE_TAGS := tests |
| 30 | |
| 31 | include $(BUILD_EXECUTABLE) |