blob: 50709111494c66cc0250dc636818e4ee47436a75 [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
Naseer Ahmed7a7b66d2014-07-23 17:56:26 -04008display-hals += hdmi_cec
Dileep Marchya96db2582014-10-27 20:58:37 -07009
10ifeq ($(TARGET_USES_SDE), true)
11 sde-libs := displayengine/libs
12 display-hals += $(sde-libs)/utils $(sde-libs)/core $(sde-libs)/hwc
13else
Dhaval Patel72462352015-01-30 15:01:33 -080014 display-hals += libgenlock libhwcomposer liboverlay libhdmi
Dileep Marchya96db2582014-10-27 20:58:37 -070015endif
16
Naseer Ahmed74214722013-02-09 08:11:36 -050017ifeq ($(call is-vendor-board-platform,QCOM),true)
18 include $(call all-named-subdir-makefiles,$(display-hals))
19else
Naseer Ahmed07bded62014-04-11 19:46:04 -040020ifneq ($(filter msm% apq%,$(TARGET_BOARD_PLATFORM)),)
Naseer Ahmed74214722013-02-09 08:11:36 -050021 include $(call all-named-subdir-makefiles,$(display-hals))
22endif
Iliyan Malchevf5c98d12012-06-29 16:54:50 -070023endif