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