0% found this document useful (0 votes)
29 views1 page

QCOM Display HALs Configuration Guide

The document discusses building display libraries for Qualcomm devices. It checks if the target is Qualcomm, includes the needed libraries, and conditions includes based on if the target is headless or not.

Uploaded by

curse platina
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views1 page

QCOM Display HALs Configuration Guide

The document discusses building display libraries for Qualcomm devices. It checks if the target is Qualcomm, includes the needed libraries, and conditions includes based on if the target is headless or not.

Uploaded by

curse platina
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

ifeq ($(call my-dir),$(call project-path-for,qcom-display))

ifneq ($(TARGET_DISABLE_DISPLAY),true)

sdm-libs := sdm/libs

display-hals := include $(sdm-libs)/utils $(sdm-libs)/core libdebug

ifneq ($(TARGET_IS_HEADLESS), true)

display-hals += libcopybit liblight libmemtrack hdmi_cec \

$(sdm-libs)/hwc2 gpu_tonemapper libdrmutils

endif

display-hals += gralloc

ifeq ($(call is-vendor-board-platform,QCOM),true)

include $(call all-named-subdir-makefiles,$(display-hals))

else

ifneq ($(filter msm% apq%,$(TARGET_BOARD_PLATFORM)),)

include $(call all-named-subdir-makefiles,$(display-hals))

endif

endif

endif #TARGET_DISABLE_DISPLAY

endif

You might also like