From: ulan@chromium.org Date: Fri, 28 Jun 2013 07:31:23 +0000 (+0000) Subject: Fix Android V8 path for testing on devices. X-Git-Tag: upstream/4.7.83~13639 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=50b59eeb72e76325a56e8b20cd3a4e43ef662bab;p=platform%2Fupstream%2Fv8.git Fix Android V8 path for testing on devices. This allows to run tests in production Android builds. R=yangguo@chromium.org Review URL: https://chromiumcodereview.appspot.com/18087002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15371 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/Makefile b/Makefile index a46b333..bdd6524 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ GYPFLAGS ?= TESTFLAGS ?= ANDROID_NDK_ROOT ?= ANDROID_TOOLCHAIN ?= -ANDROID_V8 ?= /data/local/v8 +ANDROID_V8 ?= /data/local/tmp/v8 NACL_SDK_ROOT ?= # Special build flags. Use them like this: "make library=shared" diff --git a/tools/android-run.py b/tools/android-run.py index 1693c5b..dc13598 100755 --- a/tools/android-run.py +++ b/tools/android-run.py @@ -88,7 +88,7 @@ def Main(): print("Usage: %s " % sys.argv[0]) return 1 workspace = abspath(join(dirname(sys.argv[0]), '..')) - android_workspace = os.getenv("ANDROID_V8", "/data/local/v8") + android_workspace = os.getenv("ANDROID_V8", "/data/local/tmp/v8") args = [Escape(arg) for arg in sys.argv[1:]] script = (" ".join(args) + "\n" "case $? in\n"