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

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

Issue 23936004: This fixes the component build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months 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
Index: build/android/pylib/android_commands.py
diff --git a/build/android/pylib/android_commands.py b/build/android/pylib/android_commands.py
index 66f7bcf633f682be441fdd7dc79fd06818f266d1..8eb975ba33153799b941e23d6ca911a953ab20b4 100644
--- a/build/android/pylib/android_commands.py
+++ b/build/android/pylib/android_commands.py
@@ -782,8 +782,7 @@ class AndroidCommands(object):
A tuple containing lists of the host and device md5sum results as
created by _ParseMd5SumOutput().
"""
- md5sum_dist_path = os.path.join(constants.GetOutDirectory(),
- 'md5sum_dist')
+ md5sum_dist_path = os.path.join(constants.GetOutDirectory(), 'md5sum_dist')
assert os.path.exists(md5sum_dist_path), 'Please build md5sum.'
command = 'push %s %s' % (md5sum_dist_path, MD5SUM_DEVICE_FOLDER)
assert _HasAdbPushSucceeded(self._adb.SendCommand(command))

Powered by Google App Engine
This is Rietveld 408576698