1ifneq ($(TARGET_DISABLE_DISPLAY),true) 2sdm-libs := sdm/libs 3display-hals := include $(sdm-libs)/utils $(sdm-libs)/core libdebug 4 5ifneq ($(TARGET_IS_HEADLESS), true) 6 display-hals += libcopybit liblight libmemtrack hdmi_cec \ 7 $(sdm-libs)/hwc2 gpu_tonemapper libdrmutils libhistogram drm.vendor 8endif 9 10display-hals += gralloc 11 12ifeq ($(call is-vendor-board-platform,QCOM),true) 13 include $(call all-named-subdir-makefiles,$(display-hals)) 14else 15ifneq ($(filter ms% msm% apq%,$(TARGET_BOARD_PLATFORM)),) 16 include $(call all-named-subdir-makefiles,$(display-hals)) 17endif 18endif 19endif #TARGET_DISABLE_DISPLAY 20