1LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_C_INCLUDES := \
5    $(call include-path-for, audio-utils) \
6    frameworks/av/media/libaaudio/include \
7    frameworks/av/media/libaaudio/src
8LOCAL_SRC_FILES:= test_marshalling.cpp
9LOCAL_SHARED_LIBRARIES := libaaudio libbinder libcutils libutils
10LOCAL_MODULE := test_aaudio_marshalling
11include $(BUILD_NATIVE_TEST)
12
13include $(CLEAR_VARS)
14LOCAL_C_INCLUDES := \
15    $(call include-path-for, audio-utils) \
16    frameworks/av/media/libaaudio/include \
17    frameworks/av/media/libaaudio/src
18LOCAL_SRC_FILES:= test_block_adapter.cpp
19LOCAL_SHARED_LIBRARIES := libaaudio
20LOCAL_MODULE := test_block_adapter
21include $(BUILD_NATIVE_TEST)
22
23include $(CLEAR_VARS)
24LOCAL_C_INCLUDES := \
25    $(call include-path-for, audio-utils) \
26    frameworks/av/media/libaaudio/include \
27    frameworks/av/media/libaaudio/src \
28    frameworks/av/media/libaaudio/examples
29LOCAL_SRC_FILES:= test_timestamps.cpp
30LOCAL_SHARED_LIBRARIES := libaaudio
31LOCAL_MODULE := test_timestamps
32include $(BUILD_NATIVE_TEST)
33
34include $(CLEAR_VARS)
35LOCAL_C_INCLUDES := \
36    $(call include-path-for, audio-utils) \
37    frameworks/av/media/libaaudio/include \
38    frameworks/av/media/libaaudio/src
39LOCAL_SRC_FILES:= test_linear_ramp.cpp
40LOCAL_SHARED_LIBRARIES := libaaudio
41LOCAL_MODULE := test_linear_ramp
42include $(BUILD_NATIVE_TEST)
43
44include $(CLEAR_VARS)
45LOCAL_C_INCLUDES := \
46    $(call include-path-for, audio-utils) \
47    frameworks/av/media/libaaudio/include \
48    frameworks/av/media/libaaudio/src
49LOCAL_SRC_FILES:= test_open_params.cpp
50LOCAL_SHARED_LIBRARIES := libaaudio libbinder libcutils libutils
51LOCAL_MODULE := test_open_params
52include $(BUILD_NATIVE_TEST)
53
54include $(CLEAR_VARS)
55LOCAL_C_INCLUDES := \
56    $(call include-path-for, audio-utils) \
57    frameworks/av/media/libaaudio/include \
58    frameworks/av/media/libaaudio/src
59LOCAL_SRC_FILES:= test_no_close.cpp
60LOCAL_SHARED_LIBRARIES := libaaudio libbinder libcutils libutils
61LOCAL_MODULE := test_no_close
62include $(BUILD_NATIVE_TEST)
63
64include $(CLEAR_VARS)
65LOCAL_C_INCLUDES := \
66    $(call include-path-for, audio-utils) \
67    frameworks/av/media/libaaudio/include \
68    frameworks/av/media/libaaudio/src
69LOCAL_SRC_FILES:= test_recovery.cpp
70LOCAL_SHARED_LIBRARIES := libaaudio libbinder libcutils libutils
71LOCAL_MODULE := test_aaudio_recovery
72include $(BUILD_NATIVE_TEST)
73
74include $(CLEAR_VARS)
75LOCAL_C_INCLUDES := \
76    $(call include-path-for, audio-utils) \
77    frameworks/av/media/libaaudio/include \
78    frameworks/av/media/libaaudio/src
79LOCAL_SRC_FILES:= test_n_streams.cpp
80LOCAL_SHARED_LIBRARIES := libaaudio libbinder libcutils libutils
81LOCAL_MODULE := test_n_streams
82include $(BUILD_NATIVE_TEST)
83