14 lines
473 B
Makefile
14 lines
473 B
Makefile
display-hals := libgralloc libgenlock libcopybit
|
|
display-hals += libhwcomposer liboverlay libqdutils libhdmi libqservice
|
|
display-hals += libmemtrack
|
|
ifneq ($(TARGET_PROVIDES_LIBLIGHT),true)
|
|
display-hals += liblight
|
|
endif
|
|
|
|
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
|