OSDN Git Service

Enable complex scripts support compiling by deafult.
authorclaireho <chinglanho@gmail.com>
Tue, 22 Jun 2010 16:36:24 +0000 (09:36 -0700)
committerclaireho <chinglanho@gmail.com>
Tue, 22 Jun 2010 17:35:20 +0000 (10:35 -0700)
Change-Id: Iba6b9cb70bfb642467afe9dae3efa51829dc9d06

Android.mk

index fc8fe2b..4b93ede 100644 (file)
@@ -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.