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

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

Issue 23494062: [android] Log number of completely new files when pushing test dependencies to a device. (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
« no previous file with comments | « no previous file | no next file » | 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 4f2bf26f4b4629b484f4d6a11f9a97fe30332d13..6610ed62b6416fa1e0a00817a5126344721896d4 100644
--- a/build/android/pylib/android_commands.py
+++ b/build/android/pylib/android_commands.py
@@ -830,6 +830,10 @@ class AndroidCommands(object):
device_hash_tuples = [h for h in device_hash_tuples if HostHas(h.path)]
+ if len(host_hash_tuples) > len(device_hash_tuples):
+ logging.info('%s files do not exist on the device' %
+ (len(host_hash_tuples) - len(device_hash_tuples)))
frankf 2013/09/18 20:12:17 Do you want to log the file names?
+
# Constructs the target device path from a given host path. Don't use when
# only a single file is given as the base name given in device_path may
# differ from that in host_path.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698