Varun Balaraj | 7064334 | 2017-07-20 13:27:37 +0530 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE := hdmi_in_test |
| 5 | LOCAL_MODULE_TAGS := optional |
| 6 | LOCAL_MODULE_OWNER := qti |
| 7 | |
| 8 | LOCAL_SRC_FILES := \ |
| 9 | src/hdmi_in_event_test.c |
| 10 | |
| 11 | LOCAL_SHARED_LIBRARIES := \ |
| 12 | liblog \ |
| 13 | libcutils |
| 14 | |
Vatsal Bucha | c09ae06 | 2018-11-14 13:25:08 +0530 | [diff] [blame] | 15 | ifeq ($(strip $(AUDIO_FEATURE_ENABLED_GCOV)),true) |
| 16 | LOCAL_CFLAGS += --coverage -fprofile-arcs -ftest-coverage |
| 17 | LOCAL_CPPFLAGS += --coverage -fprofile-arcs -ftest-coverage |
| 18 | LOCAL_STATIC_LIBRARIES += libprofile_rt |
| 19 | endif |
| 20 | |
Vignesh Kulothungan | 4e64c78 | 2020-01-15 18:34:48 -0800 | [diff] [blame] | 21 | ifneq ($(filter kona lahaina,$(TARGET_BOARD_PLATFORM)),) |
Vikram Panduranga | 6ff1c95 | 2019-08-07 13:33:01 -0700 | [diff] [blame] | 22 | LOCAL_SANITIZE := integer_overflow |
| 23 | endif |
Varun Balaraj | 7064334 | 2017-07-20 13:27:37 +0530 | [diff] [blame] | 24 | include $(BUILD_EXECUTABLE) |