summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.