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
This commit is contained in:
parent
69590a370f
commit
50b59eeb72
2
Makefile
2
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"
|
||||
|
@ -88,7 +88,7 @@ def Main():
|
||||
print("Usage: %s <command-to-run-on-device>" % 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"
|
||||
|
Loading…
Reference in New Issue
Block a user