Reviewers: Yang,

Message:
Committed patchset #1 manually as r15371 (presubmit successful).

Description:
Fix Android V8 path for testing on devices.

This allows to run tests in production Android builds.

[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=15371

Please review this at https://chromiumcodereview.appspot.com/18087002/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M Makefile
  M tools/android-run.py


Index: Makefile
diff --git a/Makefile b/Makefile
index a46b333f1ebeb5b345e10d2f7f834d5da21fc912..bdd652415296dfce0c54cea0f0bdde03d0f594b8 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"
Index: tools/android-run.py
diff --git a/tools/android-run.py b/tools/android-run.py
index 1693c5b064b9008a29a50140b9c521312f213fb5..dc1359883a17dec7bcc7739cba4f3b23c1798a63 100755
--- a/tools/android-run.py
+++ b/tools/android-run.py
@@ -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"


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to