summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorHuahui Wu <hwu@google.com>2010-02-23 11:24:57 -0500
committerHuahui Wu <hwu@google.com>2010-02-23 13:32:24 -0500
commitb2165bee2d1d0d322e65f0d941daf1979d755403 (patch)
treec6788183817c2b0596177159053da9f000c5f21a /Android.mk
parent976279e0c25755d59d66061900ba48b602ecceec (diff)
downloadexternal_webkit-b2165bee2d1d0d322e65f0d941daf1979d755403.zip
external_webkit-b2165bee2d1d0d322e65f0d941daf1979d755403.tar.gz
external_webkit-b2165bee2d1d0d322e65f0d941daf1979d755403.tar.bz2
While upstreaming the JSC JIT patch to the open source Webkit trunk,
there were a few small changes upon the review comments. This CL makes corresponding changes in Android code base to be consistent with the open source Webkit trunk.
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/Android.mk b/Android.mk
index 04483e3..f40613f 100644
--- a/Android.mk
+++ b/Android.mk
@@ -34,7 +34,7 @@ LOCAL_PATH := $(call my-dir)
# can be set to true, so that two builds can be different but without
# specifying which JS engine to use.
-# To control if JSC JIT is used, please set ENABLE_ANDROID_JSC_JIT environment
+# To enable JIT in Android's JSC, please set ENABLE_JSC_JIT environment
# variable to true.
# Read JS_ENGINE environment variable
@@ -210,10 +210,10 @@ LOCAL_CFLAGS += -fno-strict-aliasing
LOCAL_CFLAGS += -include "WebCorePrefix.h"
LOCAL_CFLAGS += -fvisibility=hidden
-# Enable JSC JIT if JSC is used and ENABLE_ANDROID_JSC_JIT environment
+# Enable JSC JIT if JSC is used and ENABLE_JSC_JIT environment
# variable is set to true
ifeq ($(JAVASCRIPT_ENGINE),jsc)
-ifeq ($(ENABLE_ANDROID_JSC_JIT),true)
+ifeq ($(ENABLE_JSC_JIT),true)
LOCAL_CFLAGS += -DENABLE_ANDROID_JSC_JIT=1
endif
endif