summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorclaireho <chinglanho@gmail.com>2010-06-22 10:56:07 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-06-22 10:56:07 -0700
commit03fe09e37fd24367fd6254c4e06c6ef3d4874bbb (patch)
tree2de3f85699b385fcf4eda62b76bb9e3ac3028d8a
parentd4ba65d8a1e77ab591518e878fd081b73cfaaa98 (diff)
parenta678e0b94a7f6e108d3650393d5eed3c65fefa4f (diff)
downloadexternal_webkit-03fe09e37fd24367fd6254c4e06c6ef3d4874bbb.zip
external_webkit-03fe09e37fd24367fd6254c4e06c6ef3d4874bbb.tar.gz
external_webkit-03fe09e37fd24367fd6254c4e06c6ef3d4874bbb.tar.bz2
Merge "Enable complex scripts support compiling by deafult."
-rw-r--r--Android.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index fc8fe2b..4b93ede 100644
--- a/Android.mk
+++ b/Android.mk
@@ -31,6 +31,12 @@ ifneq ($(ENABLE_SVG),false)
ENABLE_SVG = true
endif
+# Control complex scripts support compiling in webkit.
+# Default is true unless explictly disabled.
+ifneq ($(SUPPORT_COMPLEX_SCRIPTS),false)
+ SUPPORT_COMPLEX_SCRIPTS = true
+endif
+
# Two ways to control which JS engine is used:
# 1. use JS_ENGINE environment variable, value can be either 'jsc' or 'v8'
# This is the preferred way.