In preparation for the hidlization of gralloc. Also delete obsolete libgralloc Change-Id: Id657f985cff1bdbf86c781efc52e8bda4e3d27b4
20 lines
632 B
Makefile
20 lines
632 B
Makefile
ifneq ($(TARGET_DISABLE_DISPLAY),true)
|
|
sdm-libs := sdm/libs
|
|
display-hals := include libqservice libqdutils $(sdm-libs)/utils $(sdm-libs)/core
|
|
|
|
ifneq ($(TARGET_IS_HEADLESS), true)
|
|
display-hals += libcopybit liblight libmemtrack hdmi_cec \
|
|
$(sdm-libs)/hwc2 gpu_tonemapper libdrmutils libdisplayconfig
|
|
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
|