Chromium Code Reviews| 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 9738361b98b67d67a1b0506e23a5175fe4b85df9..4736178b5e21ea584ea3d311c8a496667379ed52 100755 |
| --- a/build/android/buildbot/bb_device_steps.py |
| +++ b/build/android/buildbot/bb_device_steps.py |
| @@ -153,10 +153,11 @@ def RunChromeDriverTests(options): |
| """Run all the steps for running chromedriver tests.""" |
| bb_annotations.PrintNamedStep('chromedriver_annotation') |
| RunCmd(['chrome/test/chromedriver/run_buildbot_steps.py', |
| - '--android-packages=%s,%s,%s' % |
| + '--android-packages=%s,%s,%s,%s' % |
| (constants.PACKAGE_INFO['chromium_test_shell'].package, |
| constants.PACKAGE_INFO['chrome_stable'].package, |
| - constants.PACKAGE_INFO['chrome_beta'].package), |
| + constants.PACKAGE_INFO['chrome_beta'].package, |
| + 'org.chromium.chromedriver_webview_shell'), |
|
craigdh
2013/11/07 23:26:59
add this to constants.PACKAGE_INFO
craigdh
2013/11/07 23:26:59
Also, is the bot on KitKat yet?
frankf
2013/11/08 21:20:55
Done.
frankf
2013/11/08 21:20:55
No, I'll upgrade it before landing
|
| '--revision=%s' % _GetRevision(options), |
| '--update-log']) |