summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorTorne (Richard Coles) <torne@google.com>2013-03-11 14:02:30 +0000
committerTorne (Richard Coles) <torne@google.com>2013-03-11 14:02:30 +0000
commit4cd5b417e632944c16061c086b637eb1a6dffcb1 (patch)
tree41e315805af90e506309f0a41577a1066f2a1d68 /Android.mk
parent2729ce59ec2479c72f2422f49c2f0f0a121ee5b4 (diff)
downloadandroid_frameworks_webview-4cd5b417e632944c16061c086b637eb1a6dffcb1.tar.gz
android_frameworks_webview-4cd5b417e632944c16061c086b637eb1a6dffcb1.tar.bz2
android_frameworks_webview-4cd5b417e632944c16061c086b637eb1a6dffcb1.zip
Disable webviewchromium on MIPS.
We don't generate MIPS makefiles yet, so for now just disable the build on that platform. Change-Id: Iaa53a6058e6e19a0fe9e7ad5fcb69a8687dafe5d
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk10
1 files changed, 9 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 8f47601..12f236a 100644
--- a/Android.mk
+++ b/Android.mk
@@ -22,9 +22,17 @@ include $(CLEAR_VARS)
LOCAL_MODULE := webview
LOCAL_MODULE_TAGS := optional
-LOCAL_REQUIRED_MODULES := libwebcore webviewchromium
+LOCAL_REQUIRED_MODULES := libwebcore
+
+# webviewchromium doesn't have makefiles for MIPS yet.
+ifneq ($(TARGET_ARCH),mips)
+LOCAL_REQUIRED_MODULES += webviewchromium
+endif
include $(BUILD_PHONY_PACKAGE)
+# webviewchromium doesn't have makefiles for MIPS yet.
+ifneq ($(TARGET_ARCH),mips)
# Include all the makefiles for subdirectories.
include $(call all-makefiles-under,$(LOCAL_PATH))
+endif