blob: f365637db07c88109b9d806849d5d6da66abb5ee [file] [log] [blame]
Andy Hung546734b2014-04-01 18:31:42 -07001# Build the unit tests for audioflinger
2
Andy Hungc0e5ec82014-06-17 14:33:39 -07003#
4# resampler unit test
5#
Andy Hung546734b2014-04-01 18:31:42 -07006LOCAL_PATH:= $(call my-dir)
7include $(CLEAR_VARS)
8
9LOCAL_SHARED_LIBRARIES := \
10 liblog \
11 libutils \
12 libcutils \
13 libstlport \
14 libaudioutils \
15 libaudioresampler
16
17LOCAL_STATIC_LIBRARIES := \
18 libgtest \
19 libgtest_main
20
21LOCAL_C_INCLUDES := \
22 bionic \
23 bionic/libstdc++/include \
24 external/gtest/include \
25 external/stlport/stlport \
Andy Hungc0e5ec82014-06-17 14:33:39 -070026 $(call include-path-for, audio-utils) \
Andy Hung546734b2014-04-01 18:31:42 -070027 frameworks/av/services/audioflinger
28
29LOCAL_SRC_FILES := \
30 resampler_tests.cpp
31
32LOCAL_MODULE := resampler_tests
33LOCAL_MODULE_TAGS := tests
34
35include $(BUILD_EXECUTABLE)