diff options
author | Patrick Scott <phanna@android.com> | 2010-08-18 10:04:03 -0400 |
---|---|---|
committer | Patrick Scott <phanna@android.com> | 2010-08-18 10:04:03 -0400 |
commit | bd9f4f1acbf7fcaa5ccac7740149e7607fd63e52 (patch) | |
tree | 218c3ce73ce0c789a235c570dbcf969b27870aa0 | |
parent | e38221f9813b52fbb9b76bb38c76ab08e25e5bb9 (diff) | |
download | external_webkit-bd9f4f1acbf7fcaa5ccac7740149e7607fd63e52.zip external_webkit-bd9f4f1acbf7fcaa5ccac7740149e7607fd63e52.tar.gz external_webkit-bd9f4f1acbf7fcaa5ccac7740149e7607fd63e52.tar.bz2 |
Get the build bot to use the chrome stack.
Change-Id: Ib44e439bc272810e409f61477612dbbf30bb6371
-rw-r--r-- | Android.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |