summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index ee8b3d8..5cd23b3 100644
--- a/Android.mk
+++ b/Android.mk
@@ -56,7 +56,7 @@ JAVASCRIPT_ENGINE = $(JS_ENGINE)
# We default to the V8 JS engine on everything except the simulator where
# we stick with JSC.
-ifeq ($(TARGET_SIMULATOR),false)
+ifneq ($(TARGET_SIMULATOR),true)
DEFAULT_ENGINE = v8
ALT_ENGINE = jsc
else
@@ -76,7 +76,7 @@ ifneq ($(JAVASCRIPT_ENGINE),jsc)
endif
# Read the HTTP_STACK environment variable, default is android
-ifeq ($(TARGET_SIMULATOR),false)
+ifneq ($(TARGET_SIMULATOR),true)
HTTP_STACK = $(HTTP)
ifneq ($(HTTP_STACK),android)
# Chrome net stack has dependencies on V8.