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.
82 lines
4.1 KiB
82 lines
4.1 KiB
4 months ago
|
LOCAL_PATH := $(call my-dir)
|
||
|
include $(CLEAR_VARS)
|
||
|
include $(LOCAL_PATH)/../../../common.mk
|
||
|
|
||
|
ifeq ($(use_hwc2),true)
|
||
|
|
||
|
LOCAL_MODULE := hwcomposer.$(TARGET_BOARD_PLATFORM)
|
||
|
LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-BSD legacy_not_a_contribution
|
||
|
LOCAL_LICENSE_CONDITIONS := by_exception_only not_allowed notice
|
||
|
LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../../LICENSE
|
||
|
LOCAL_VENDOR_MODULE := true
|
||
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
||
|
LOCAL_MODULE_TAGS := optional
|
||
|
LOCAL_C_INCLUDES := $(common_includes)
|
||
|
LOCAL_C_INCLUDES += $(kernel_includes)
|
||
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps)
|
||
|
LOCAL_HEADER_LIBRARIES := display_headers
|
||
|
|
||
|
LOCAL_CFLAGS := -Wno-missing-field-initializers -Wno-unused-parameter \
|
||
|
-fcolor-diagnostics\
|
||
|
-DLOG_TAG=\"SDM\" $(common_flags)
|
||
|
LOCAL_CLANG := true
|
||
|
|
||
|
LOCAL_SHARED_LIBRARIES := libsdmcore libqservice libbinder libhardware libhardware_legacy \
|
||
|
libutils libcutils libsync libqdutils libqdMetaData \
|
||
|
libdisplaydebug libsdmutils libc++ liblog libgrallocutils libui \
|
||
|
libgpu_tonemapper libhidlbase libhidltransport \
|
||
|
android.hardware.graphics.mapper@2.0 \
|
||
|
android.hardware.graphics.mapper@2.1 \
|
||
|
android.hardware.graphics.mapper@3.0 \
|
||
|
android.hardware.graphics.allocator@2.0 \
|
||
|
android.hardware.graphics.allocator@3.0 \
|
||
|
android.hardware.graphics.composer@2.2 \
|
||
|
android.hardware.graphics.composer@2.3 \
|
||
|
android.hardware.graphics.composer@2.4 \
|
||
|
hardware.google.light@1.0 \
|
||
|
libdrm \
|
||
|
vendor.display.config@1.0 \
|
||
|
vendor.display.config@1.1 \
|
||
|
vendor.display.config@1.2 \
|
||
|
vendor.display.config@1.3 \
|
||
|
vendor.display.config@1.4 \
|
||
|
vendor.display.config@1.5 \
|
||
|
vendor.display.config@1.6 \
|
||
|
vendor.display.config@1.7 \
|
||
|
vendor.display.config@1.8 \
|
||
|
vendor.display.config@1.9 \
|
||
|
vendor.display.config@1.10 \
|
||
|
vendor.display.config@1.11
|
||
|
|
||
|
LOCAL_STATIC_LIBRARIES := libhistogram
|
||
|
|
||
|
# Allow implicit fallthroughs in hwc_display.cpp until they are fixed.
|
||
|
LOCAL_CFLAGS += -Wno-error=implicit-fallthrough
|
||
|
|
||
|
ifeq ($(TARGET_BOARD_AUTO), true)
|
||
|
LOCAL_CFLAGS += -DCONFIG_BASEID_FROM_PROP
|
||
|
endif
|
||
|
|
||
|
LOCAL_SRC_FILES := hwc_session.cpp \
|
||
|
hwc_session_services.cpp \
|
||
|
hwc_display.cpp \
|
||
|
hwc_display_builtin.cpp \
|
||
|
hwc_display_pluggable.cpp \
|
||
|
hwc_display_dummy.cpp \
|
||
|
hwc_display_pluggable_test.cpp \
|
||
|
hwc_display_virtual.cpp \
|
||
|
hwc_debugger.cpp \
|
||
|
hwc_buffer_sync_handler.cpp \
|
||
|
hwc_color_manager.cpp \
|
||
|
hwc_layers.cpp \
|
||
|
hwc_callbacks.cpp \
|
||
|
cpuhint.cpp \
|
||
|
hwc_tonemapper.cpp \
|
||
|
display_null.cpp \
|
||
|
hwc_socket_handler.cpp \
|
||
|
hwc_buffer_allocator.cpp
|
||
|
#LOCAL_VINTF_FRAGMENTS := android.hardware.graphics.composer-qti-display.xml
|
||
|
|
||
|
include $(BUILD_SHARED_LIBRARY)
|
||
|
endif
|