summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-12-17 06:05:29 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-12-17 06:05:29 -0800
commit3938b0eba27eaf7799cd92cf5bfd2ed8d0bbad62 (patch)
tree66ef5ec6ef90260e8f8c8a5ad7697d9a4d00e9bf
parent27f8b0be5e91afbcd668785adb636b43f27cc9f7 (diff)
parentb48ad822c68e606bc3874b6c83663b6c34a04208 (diff)
downloadexternal_webkit-3938b0eba27eaf7799cd92cf5bfd2ed8d0bbad62.zip
external_webkit-3938b0eba27eaf7799cd92cf5bfd2ed8d0bbad62.tar.gz
external_webkit-3938b0eba27eaf7799cd92cf5bfd2ed8d0bbad62.tar.bz2
Merge "Fail when building with JSC and the Chrome HTTP stack"
-rw-r--r--Android.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index d613a0f..79e968e 100644
--- a/Android.mk
+++ b/Android.mk
@@ -93,7 +93,9 @@ endif
# The Chrome stack can not be used with JSC and hence can not be used be used
# with the simulator.
ifeq ($(JAVASCRIPT_ENGINE),jsc)
- HTTP_STACK = android
+ ifeq ($(HTTP_STACK),chrome)
+ $(error Can not build with JSC and the Chrome HTTP stack)
+ endif
endif
# Read the environment variable to determine if Autofill is compiled.