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