Chromium Code Reviews| 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..e2f0eeda0a276f87aaa23910ed25f3afc7457dca 100644 |
| --- a/build/android/pylib/android_commands.py |
| +++ b/build/android/pylib/android_commands.py |
| @@ -863,6 +863,7 @@ class AndroidCommands(object): |
| changed_files = self.GetFilesChanged(host_path, device_path) |
| logging.info('Found %d files that need to be pushed to %s', |
| len(changed_files), device_path) |
| + logging.info([os.path.relpath(f[0], host_path) for f in changed_files]) |
|
frankf
2013/09/17 18:16:25
Why relative path?
|
| if not changed_files: |
| return |