| 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 820074977591e681ffb5e59379565b5b32cce946..16ea4d939525f87553b6926150355319d38b4a84 100755
|
| --- a/build/android/buildbot/bb_device_steps.py
|
| +++ b/build/android/buildbot/bb_device_steps.py
|
| @@ -171,9 +171,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)
|
|
|
|
|