blob: 6ee6f4b9a620b6f4ce218a50b9db4c6f48992acf [file] [log] [blame]
Manish Dewangan141cb562016-09-27 11:58:05 +05301LOCAL_PATH := $(call my-dir)
2
3# audio_hal_playback_test
4# ==============================================================================
5include $(CLEAR_VARS)
Dhananjay Kumar23a3bec2017-01-11 18:38:09 +05306LOCAL_SRC_FILES := qahw_playback_test.c \
7 qahw_effect_test.c
Manish Dewangan141cb562016-09-27 11:58:05 +05308LOCAL_MODULE := hal_play_test
9
10hal-play-inc = $(TARGET_OUT_HEADERS)/mm-audio/qahw_api/inc
11
12LOCAL_CFLAGS += -Wall -Werror -Wno-sign-compare
13
14LOCAL_SHARED_LIBRARIES := \
15 libaudioutils\
16 libqahw \
17 libutils
18
19LOCAL_32_BIT_ONLY := true
20
21LOCAL_C_INCLUDES += $(hal-play-inc)
22
23include $(BUILD_EXECUTABLE)
24
25# audio_hal_multi_record_test
26# ==============================================================================
27include $(CLEAR_VARS)
28LOCAL_SRC_FILES := qahw_multi_record_test.c
29LOCAL_MODULE := hal_rec_test
30LOCAL_CFLAGS += -Wall -Werror -Wno-sign-compare
31LOCAL_SHARED_LIBRARIES := \
32 libaudioutils \
33 libqahw \
34 libutils
35
36LOCAL_32_BIT_ONLY := true
37
38hal-rec-inc = $(TARGET_OUT_HEADERS)/mm-audio/qahw_api/inc
39
40LOCAL_C_INCLUDES += $(hal-rec-inc)
41include $(BUILD_EXECUTABLE)