Android.mk revision 546734b3ab577d46afe863515104a062e88a109b
1# 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)
32