summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorTorne (Richard Coles) <torne@google.com>2013-03-18 10:45:14 +0000
committerTorne (Richard Coles) <torne@google.com>2013-03-18 10:45:14 +0000
commitbd30019ef43699a933f5965a5e078bb1a15aa8b8 (patch)
tree679e6748eed2cc3414f6987bcca9b159dd10cfe8 /Android.mk
parente478bc775f7f0804009e89325a91e6a88374b62d (diff)
downloadandroid_frameworks_webview-bd30019ef43699a933f5965a5e078bb1a15aa8b8.tar.gz
android_frameworks_webview-bd30019ef43699a933f5965a5e078bb1a15aa8b8.tar.bz2
android_frameworks_webview-bd30019ef43699a933f5965a5e078bb1a15aa8b8.zip
Disable building on Mac again.
Mac builds are still broken; turn them off again until someone can investigate this manually on a mac. Bug: 8326522 Change-Id: I3a3b901164e8becf3dd732be8dc2f81f7dff4d38
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 12f236a..3c354f1 100644
--- a/Android.mk
+++ b/Android.mk
@@ -26,13 +26,19 @@ LOCAL_REQUIRED_MODULES := libwebcore
# webviewchromium doesn't have makefiles for MIPS yet.
ifneq ($(TARGET_ARCH),mips)
+# webviewchromium is currently broken on mac (b/8326522)
+ifeq ($(HOST_OS),linux)
LOCAL_REQUIRED_MODULES += webviewchromium
endif
+endif
include $(BUILD_PHONY_PACKAGE)
# webviewchromium doesn't have makefiles for MIPS yet.
ifneq ($(TARGET_ARCH),mips)
+# webviewchromium is currently broken on mac (b/8326522)
+ifeq ($(HOST_OS),linux)
# Include all the makefiles for subdirectories.
include $(call all-makefiles-under,$(LOCAL_PATH))
endif
+endif