Android.mk: Disable tools that do not build for android

Disable the tools / demo code that do not currently build
for android until they can be fixed.

Affected tools / demos
intel_display_crc
intel_sprite_on

v2: intel_display_crc compiled conditionally on ANDROID_HAS_CAIRO
flag.
v3: removed intel_reg from the skip list as Thomas has prepared
a patch to fix it for Android.

Signed-off-by: Derek Morton <derek.j.morton@intel.com>
Signed-off-by: Thomas Wood <thomas.wood@intel.com>
This commit is contained in:
Derek Morton 2015-07-17 10:15:39 +01:00 committed by Thomas Wood
parent e65c69b995
commit 3c294a8fa3
2 changed files with 5 additions and 1 deletions

View File

@ -1,2 +1,2 @@
include $(call all-named-subdir-makefiles, lib tests tools benchmarks demos)
include $(call all-named-subdir-makefiles, lib tests tools benchmarks)

View File

@ -45,6 +45,10 @@ skip_tools_list := \
intel_vga_read \
intel_vga_write
ifneq ("${ANDROID_HAS_CAIRO}", "1")
skip_tools_list += intel_display_crc
endif
tools_list := $(filter-out $(skip_tools_list),$(bin_PROGRAMS))
$(foreach item,$(tools_list),$(eval $(call add_tool,$(item))))