Naseer Ahmed | 7a7b66d | 2014-07-23 17:56:26 -0400 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(LOCAL_PATH)/../common.mk |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_MODULE := hdmi_cec.$(TARGET_BOARD_PLATFORM) |
Naseer Ahmed | 725789e | 2017-05-17 13:41:10 -0400 | [diff] [blame^] | 6 | LOCAL_VENDOR_MODULE := true |
Naseer Ahmed | 44e8a9a | 2015-02-24 15:33:23 -0500 | [diff] [blame] | 7 | LOCAL_MODULE_RELATIVE_PATH := hw |
Naseer Ahmed | 7a7b66d | 2014-07-23 17:56:26 -0400 | [diff] [blame] | 8 | LOCAL_MODULE_TAGS := optional |
| 9 | LOCAL_C_INCLUDES := $(common_includes) |
Naseer Ahmed | 4d78d03 | 2017-03-22 12:47:30 -0400 | [diff] [blame] | 10 | LOCAL_HEADER_LIBRARIES := display_headers |
Naseer Ahmed | 7a7b66d | 2014-07-23 17:56:26 -0400 | [diff] [blame] | 11 | LOCAL_SHARED_LIBRARIES := $(common_libs) libqservice libbinder libqdutils |
| 12 | |
Naseer Ahmed | b8ecfbf | 2015-11-02 20:34:29 -0500 | [diff] [blame] | 13 | LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdhdmi_cec\" -Wno-sign-conversion |
| 14 | LOCAL_CLANG := true |
Naseer Ahmed | 7a7b66d | 2014-07-23 17:56:26 -0400 | [diff] [blame] | 15 | LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) |
| 16 | LOCAL_SRC_FILES := qhdmi_cec.cpp \ |
| 17 | QHDMIClient.cpp |
| 18 | include $(BUILD_SHARED_LIBRARY) |