blob: a128327159b4dc65855470f502873b027a5c52b9 [file] [log] [blame]
Dhaval Patel72462352015-01-30 15:01:33 -08001ifeq ($(call is-board-platform-in-list, thulium),true)
2 TARGET_USES_SDE = true
3else
4 TARGET_USES_SDE = false
5endif
Dileep Marchya96db2582014-10-27 20:58:37 -07006
Dhaval Patel72462352015-01-30 15:01:33 -08007display-hals := libgralloc libcopybit liblight libmemtrack libqservice libqdutils
Dileep Marchya96db2582014-10-27 20:58:37 -07008
9ifeq ($(TARGET_USES_SDE), true)
10 sde-libs := displayengine/libs
11 display-hals += $(sde-libs)/utils $(sde-libs)/core $(sde-libs)/hwc
12else
Dhaval Patel72462352015-01-30 15:01:33 -080013 display-hals += libgenlock libhwcomposer liboverlay libhdmi
Dileep Marchya96db2582014-10-27 20:58:37 -070014endif
15
Naseer Ahmed74214722013-02-09 08:11:36 -050016ifeq ($(call is-vendor-board-platform,QCOM),true)
17 include $(call all-named-subdir-makefiles,$(display-hals))
18else
Naseer Ahmed07bded62014-04-11 19:46:04 -040019ifneq ($(filter msm% apq%,$(TARGET_BOARD_PLATFORM)),)
Naseer Ahmed74214722013-02-09 08:11:36 -050020 include $(call all-named-subdir-makefiles,$(display-hals))
21endif
Iliyan Malchevf5c98d12012-06-29 16:54:50 -070022endif