Skip to content

Commit 51be965

Browse files
Fix Android V8 path for testing on devices.
This allows to run tests in production Android builds. [email protected] Review URL: https://chromiumcodereview.appspot.com/18087002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@15371 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
1 parent 262aed0 commit 51be965

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ GYPFLAGS ?=
3535
TESTFLAGS ?=
3636
ANDROID_NDK_ROOT ?=
3737
ANDROID_TOOLCHAIN ?=
38-
ANDROID_V8 ?= /data/local/v8
38+
ANDROID_V8 ?= /data/local/tmp/v8
3939
NACL_SDK_ROOT ?=
4040

4141
# Special build flags. Use them like this: "make library=shared"

tools/android-run.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def Main():
8888
print("Usage: %s <command-to-run-on-device>" % sys.argv[0])
8989
return 1
9090
workspace = abspath(join(dirname(sys.argv[0]), '..'))
91-
android_workspace = os.getenv("ANDROID_V8", "/data/local/v8")
91+
android_workspace = os.getenv("ANDROID_V8", "/data/local/tmp/v8")
9292
args = [Escape(arg) for arg in sys.argv[1:]]
9393
script = (" ".join(args) + "\n"
9494
"case $? in\n"

0 commit comments

Comments
 (0)