| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 DEPS = [ | 5 DEPS = [ |
| 6 'adb', | 6 'adb', |
| 7 'bisect_tester', | 7 'bisect_tester', |
| 8 'depot_tools/bot_update', | 8 'depot_tools/bot_update', |
| 9 'chromium', | 9 'chromium', |
| 10 'chromium_android', | 10 'chromium_android', |
| (...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1047 api.json.output({ | 1047 api.json.output({ |
| 1048 'Android Tests': { | 1048 'Android Tests': { |
| 1049 'instrumentation_tests': [ | 1049 'instrumentation_tests': [ |
| 1050 { | 1050 { |
| 1051 'test': 'ChromePublicTest', | 1051 'test': 'ChromePublicTest', |
| 1052 'test_apk': 'one_apk', | 1052 'test_apk': 'one_apk', |
| 1053 'apk_under_test': 'second_apk', | 1053 'apk_under_test': 'second_apk', |
| 1054 'additional_apks': [ | 1054 'additional_apks': [ |
| 1055 'another_apk', | 1055 'another_apk', |
| 1056 'omg_so_many_apks', | 1056 'omg_so_many_apks', |
| 1057 ] | 1057 ], |
| 1058 'render_results_dir': 'chrome/test/data/android/render_t
ests', |
| 1058 } | 1059 } |
| 1059 ], | 1060 ], |
| 1060 }, | 1061 }, |
| 1061 }) | 1062 }) |
| 1062 ) | 1063 ) |
| 1063 ) | 1064 ) |
| 1064 | 1065 |
| 1065 yield ( | 1066 yield ( |
| 1066 api.test('dynamic_instrumentation_nodefault_build') + | 1067 api.test('dynamic_instrumentation_nodefault_build') + |
| 1067 api.properties.generic(mastername='chromium.linux', | 1068 api.properties.generic(mastername='chromium.linux', |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1568 yield ( | 1569 yield ( |
| 1569 api.test('ensure_goma_fail') + | 1570 api.test('ensure_goma_fail') + |
| 1570 api.properties( | 1571 api.properties( |
| 1571 mastername='chromium.fyi', | 1572 mastername='chromium.fyi', |
| 1572 buildername='Linux remote_run Builder', | 1573 buildername='Linux remote_run Builder', |
| 1573 slavename='build1-a1', | 1574 slavename='build1-a1', |
| 1574 buildnumber='77457', | 1575 buildnumber='77457', |
| 1575 path_config='kitchen') + | 1576 path_config='kitchen') + |
| 1576 api.override_step_data('ensure_goma.ensure_installed', retcode=1) | 1577 api.override_step_data('ensure_goma.ensure_installed', retcode=1) |
| 1577 ) | 1578 ) |
| OLD | NEW |