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) |
| 6 | LOCAL_SRC_FILES := qahw_playback_test.c |
| 7 | LOCAL_MODULE := hal_play_test |
| 8 | |
| 9 | hal-play-inc = $(TARGET_OUT_HEADERS)/mm-audio/qahw_api/inc |
| 10 | |
| 11 | LOCAL_CFLAGS += -Wall -Werror -Wno-sign-compare |
| 12 | |
| 13 | LOCAL_SHARED_LIBRARIES := \ |
| 14 | libaudioutils\ |
| 15 | libqahw \ |
| 16 | libutils |
| 17 | |
| 18 | LOCAL_32_BIT_ONLY := true |
| 19 | |
| 20 | LOCAL_C_INCLUDES += $(hal-play-inc) |
| 21 | |
| 22 | include $(BUILD_EXECUTABLE) |
| 23 | |
| 24 | # audio_hal_multi_record_test |
| 25 | # ============================================================================== |
| 26 | include $(CLEAR_VARS) |
| 27 | LOCAL_SRC_FILES := qahw_multi_record_test.c |
| 28 | LOCAL_MODULE := hal_rec_test |
| 29 | LOCAL_CFLAGS += -Wall -Werror -Wno-sign-compare |
| 30 | LOCAL_SHARED_LIBRARIES := \ |
| 31 | libaudioutils \ |
| 32 | libqahw \ |
| 33 | libutils |
| 34 | |
| 35 | LOCAL_32_BIT_ONLY := true |
| 36 | |
| 37 | hal-rec-inc = $(TARGET_OUT_HEADERS)/mm-audio/qahw_api/inc |
| 38 | |
| 39 | LOCAL_C_INCLUDES += $(hal-rec-inc) |
| 40 | include $(BUILD_EXECUTABLE) |