android_hardware_qcom_display/Android.mk
Andrew Sutherland 8ead1072f1 qcom display: qsd8k hwcomposer
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
2012-02-20 23:10:17 -06:00

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