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

Unified Diff: build/android/buildbot/bb_device_steps.py

Issue 286423002: Make adb_install_apk.py saner for humans. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@android_build_cleanup
Patch Set: rebase Created 6 years, 7 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
« build/android/adb_install_apk.py ('K') | « build/android/adb_install_apk.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/buildbot/bb_device_steps.py
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py
index 52bbbf8ee3a76b5f5323b647b80577a7009c07db..ab4c5d84b38d37b1176c44bad692ea748e76ad1f 100755
--- a/build/android/buildbot/bb_device_steps.py
+++ b/build/android/buildbot/bb_device_steps.py
@@ -181,9 +181,10 @@ def InstallApk(options, test, print_step=False):
if print_step:
bb_annotations.PrintNamedStep('install_%s' % test.name.lower())
- args = ['--apk', test.apk, '--apk_package', test.apk_package]
+ args = ['--apk_package', test.apk_package]
if options.target == 'Release':
args.append('--release')
+ args.append(test.apk)
RunCmd(['build/android/adb_install_apk.py'] + args, halt_on_failure=True)
« build/android/adb_install_apk.py ('K') | « build/android/adb_install_apk.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698