You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
764 B
18 lines
764 B
LOCAL_PATH := $(call my-dir) |
|
include $(LOCAL_PATH)/../common.mk |
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_MODULE := hdmi_cec.$(TARGET_BOARD_PLATFORM) |
|
LOCAL_VENDOR_MODULE := true |
|
LOCAL_MODULE_RELATIVE_PATH := hw |
|
LOCAL_MODULE_TAGS := optional |
|
LOCAL_C_INCLUDES := $(common_includes) |
|
LOCAL_HEADER_LIBRARIES := display_headers |
|
LOCAL_SHARED_LIBRARIES := $(common_libs) libqservice libbinder libqdutils |
|
|
|
LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdhdmi_cec\" -Wno-sign-conversion |
|
LOCAL_CLANG := true |
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) |
|
LOCAL_SRC_FILES := qhdmi_cec.cpp \ |
|
QHDMIClient.cpp |
|
include $(BUILD_SHARED_LIBRARY)
|
|
|