summaryrefslogtreecommitdiffstats
path: root/libI420colorconvert
diff options
context:
space:
mode:
authorDan Murphy <dmurphy@ti.com>2012-05-01 18:13:05 -0500
committerDaniel Levin <dendy@ti.com>2012-11-20 18:32:11 +0200
commitc631ab0b923cf4bc9927aa5769e44bf1a0fb8aff (patch)
tree2269ecba0706244f851b9ef3b157d7248b2ade72 /libI420colorconvert
parent851553ca5bda0e1628b5e76c39db29e500856cbf (diff)
downloadhardware_ti_omap4-c631ab0b923cf4bc9927aa5769e44bf1a0fb8aff.zip
hardware_ti_omap4-c631ab0b923cf4bc9927aa5769e44bf1a0fb8aff.tar.gz
hardware_ti_omap4-c631ab0b923cf4bc9927aa5769e44bf1a0fb8aff.tar.bz2
OMAP5: Modify colorconvert and stagefright Android.mk for OMAP4&5 only
Modifying the Android.mk files to ensure code is only run for OMAP4 and OMAP5 boards. Change-Id: Id6664babf93c1b172a907cbfcd82041836f71ab8 Signed-off-by: Jean Johnson <jean-johnson@ti.com> Signed-off-by: Andrii Beregovenko <a.beregovenko@ti.com> Signed-off-by: Daniel Levin <dendy@ti.com>
Diffstat (limited to 'libI420colorconvert')
-rw-r--r--libI420colorconvert/Android.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/libI420colorconvert/Android.mk b/libI420colorconvert/Android.mk
index aa792ba..7bc9a38 100644
--- a/libI420colorconvert/Android.mk
+++ b/libI420colorconvert/Android.mk
@@ -1,4 +1,8 @@
-ifeq ($(TARGET_BOARD_PLATFORM),omap4)
+# Only applicable for OMAP4 and OMAP5 boards.
+# First eliminate OMAP3 and then ensure that this is not used
+# for customer boards
+ifneq ($(TARGET_BOARD_PLATFORM),omap3)
+ifeq ($(findstring omap, $(TARGET_BOARD_PLATFORM)),omap)
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
@@ -19,3 +23,4 @@ LOCAL_MODULE := libI420colorconvert
include $(BUILD_HEAPTRACKED_SHARED_LIBRARY)
endif
+endif