8ead1072f1
hwcomposer: rewrite from default template. specific for qsd8k put a hack in to fix screen off animation builds without liboverlay include which qsd8k doesnt support Change-Id: Ica8df89be4dba4e92ed4e879e8e821b841e2ef93
15 lines
570 B
Makefile
15 lines
570 B
Makefile
#Enables the listed display HAL modules
|
|
|
|
ifeq ($(BOARD_USES_QCOM_HARDWARE),true)
|
|
ifeq ($(BOARD_USES_LEGACY_QCOM),true)
|
|
display-hals := libgralloc-legacy libcopybit
|
|
else ifeq ($(TARGET_BOARD_PLATFORM),qsd8k)
|
|
display-hals := libhwcomposer-qsd8k libgralloc libcopybit libgenlock
|
|
display-hals += libtilerenderer libqcomui
|
|
else
|
|
display-hals := libhwcomposer liboverlay libgralloc libcopybit libgenlock
|
|
display-hals += libtilerenderer libqcomui
|
|
endif
|
|
include $(call all-named-subdir-makefiles,$(display-hals))
|
|
endif
|