qcom-display: Only include products for MSM boards

This change properly excludes these products from being inherited
by non-qcom devices.

Beware that the MSM7K_BOARD_PLATFORMS is not in place yet and
if you want to try these with currently unsupported devices you
will have to define this yourself.

Change-Id: I4c7f2d84df4dbde1e18ded4ca9f2333006b89bd6
This commit is contained in:
Diogo Ferreira 2011-11-29 11:44:41 +00:00
parent 36bbca99c8
commit 5e7759135e

View File

@ -1,4 +1,6 @@
#Enables the listed display HAL modules
display-hals := libhwcomposer liboverlay libgralloc libcopybit
include $(call all-named-subdir-makefiles,$(display-hals))
ifeq ($(call is-board-platform-in-list,$(MSM7K_BOARD_PLATFORMS)),true)
display-hals := libhwcomposer liboverlay libgralloc libcopybit
include $(call all-named-subdir-makefiles,$(display-hals))
endif