2017-07-20 07:57:37 +00:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_MODULE := hdmi_in_test
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_MODULE_OWNER := qti
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
src/hdmi_in_event_test.c
|
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
|
|
liblog \
|
|
|
|
libcutils
|
|
|
|
|
2018-11-14 07:55:08 +00:00
|
|
|
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_GCOV)),true)
|
|
|
|
LOCAL_CFLAGS += --coverage -fprofile-arcs -ftest-coverage
|
|
|
|
LOCAL_CPPFLAGS += --coverage -fprofile-arcs -ftest-coverage
|
|
|
|
LOCAL_STATIC_LIBRARIES += libprofile_rt
|
|
|
|
endif
|
|
|
|
|
2017-07-20 07:57:37 +00:00
|
|
|
include $(BUILD_EXECUTABLE)
|