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.
81 lines
3.2 KiB
81 lines
3.2 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_VENDOR_MODULE := true
|
||
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
||
|
LOCAL_MODULE_TAGS := optional
|
||
|
LOCAL_C_INCLUDES := $(common_includes)
|
||
|
LOCAL_HEADER_LIBRARIES := display_headers
|
||
|
|
||
|
LOCAL_CFLAGS := -Wno-missing-field-initializers -Wno-unused-parameter \
|
||
|
-fcolor-diagnostics\
|
||
|
-DLOG_TAG=\"SDM\" $(common_flags) \
|
||
|
-I $(display_top)/sdm/libs/hwc
|
||
|
ifeq ($(TARGET_EXCLUDES_DISPLAY_PP), true)
|
||
|
LOCAL_CFLAGS += -DEXCLUDE_DISPLAY_PP
|
||
|
endif
|
||
|
|
||
|
LOCAL_CLANG := true
|
||
|
|
||
|
# For enabling the fake display
|
||
|
ifneq ($(TARGET_HAS_NO_DISPLAY),true)
|
||
|
|
||
|
# TODO: Remove libui after addressing gpu_tonemapper issues
|
||
|
LOCAL_SHARED_LIBRARIES := libsdmcore libqservice libbinder libhardware libhardware_legacy \
|
||
|
libutils libcutils libsync libqdutils libqdMetaData libdl libdrmutils \
|
||
|
libsdmutils libc++ liblog libgrallocutils libdl \
|
||
|
vendor.display.config@1.0 libhidlbase \
|
||
|
libui libgpu_tonemapper
|
||
|
|
||
|
ifneq ($(TARGET_USES_GRALLOC1), true)
|
||
|
LOCAL_SHARED_LIBRARIES += libmemalloc
|
||
|
endif
|
||
|
|
||
|
ifeq ($(display_config_version), DISPLAY_CONFIG_1_1)
|
||
|
LOCAL_SHARED_LIBRARIES += vendor.display.config@1.1
|
||
|
endif
|
||
|
|
||
|
# Allow implicit fallthroughs in hwc_display.cpp until they are fixed.
|
||
|
LOCAL_CFLAGS += -Wno-implicit-fallthrough
|
||
|
|
||
|
LOCAL_SRC_FILES := hwc_session.cpp \
|
||
|
hwc_session_services.cpp \
|
||
|
hwc_display.cpp \
|
||
|
hwc_display_primary.cpp \
|
||
|
hwc_display_external.cpp \
|
||
|
hwc_display_virtual.cpp \
|
||
|
../hwc/hwc_debugger.cpp \
|
||
|
../hwc/hwc_buffer_sync_handler.cpp \
|
||
|
hwc_color_manager.cpp \
|
||
|
hwc_layers.cpp \
|
||
|
hwc_callbacks.cpp \
|
||
|
../hwc/cpuhint.cpp \
|
||
|
../hwc/hwc_socket_handler.cpp \
|
||
|
display_null.cpp \
|
||
|
hwc_tonemapper.cpp \
|
||
|
hwc_display_external_test.cpp
|
||
|
|
||
|
ifneq ($(TARGET_USES_GRALLOC1), true)
|
||
|
LOCAL_SRC_FILES += ../hwc/hwc_buffer_allocator.cpp
|
||
|
else
|
||
|
LOCAL_SRC_FILES += hwc_buffer_allocator.cpp
|
||
|
endif
|
||
|
|
||
|
ifeq ($(TARGET_HAS_WIDE_COLOR_DISPLAY), true)
|
||
|
LOCAL_CFLAGS += -DFEATURE_WIDE_COLOR
|
||
|
endif
|
||
|
|
||
|
else #Target does not have display
|
||
|
LOCAL_SHARED_LIBRARIES := libc++ liblog libutils
|
||
|
LOCAL_SRC_FILES := hwcomposer.cpp
|
||
|
endif #ifneq ($(TARGET_HAS_NO_DISPLAY),true)
|
||
|
|
||
|
include $(BUILD_SHARED_LIBRARY)
|
||
|
endif
|