Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(545)

Unified Diff: build/android/pylib/android_commands.py

Issue 11312239: Modify the Android test running scripts so they can be used from WebKit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/android/pylib/cmd_helper.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/android_commands.py
diff --git a/build/android/pylib/android_commands.py b/build/android/pylib/android_commands.py
index 65aab3c3333d6d3e43d1e793f5d15c9dec0f708e..8033bc81e50565edbecf62bb2523e9aa71daf3b9 100644
--- a/build/android/pylib/android_commands.py
+++ b/build/android/pylib/android_commands.py
@@ -595,9 +595,10 @@ class AndroidCommands(object):
if not self._md5sum_path:
default_build_type = os.environ.get('BUILD_TYPE', 'Debug')
- md5sum_path = '%s/out/%s/md5sum_bin' % (CHROME_SRC, default_build_type)
+ md5sum_path = '%s/%s/md5sum_bin' % (cmd_helper.OutDirectory.get(),
+ default_build_type)
if not os.path.exists(md5sum_path):
- md5sum_path = '%s/out/Release/md5sum_bin' % (CHROME_SRC)
+ md5sum_path = '%s/Release/md5sum_bin' % cmd_helper.OutDirectory.get()
if not os.path.exists(md5sum_path):
print >> sys.stderr, 'Please build md5sum.'
sys.exit(1)
« no previous file with comments | « no previous file | build/android/pylib/cmd_helper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698