| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 from recipe_engine.types import freeze | 5 from recipe_engine.types import freeze |
| 6 from recipe_engine.recipe_api import Property | 6 from recipe_engine.recipe_api import Property |
| 7 | 7 |
| 8 DEPS = [ | 8 DEPS = [ |
| 9 'cronet', | 9 'cronet', |
| 10 'recipe_engine/path', | 10 'recipe_engine/path', |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 def GenTests(api): | 165 def GenTests(api): |
| 166 for bot_id in BUILDERS.keys(): | 166 for bot_id in BUILDERS.keys(): |
| 167 props = api.properties.generic( | 167 props = api.properties.generic( |
| 168 buildername=bot_id, | 168 buildername=bot_id, |
| 169 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00', | 169 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00', |
| 170 repository='https://chromium.googlesource.com/chromium/src', | 170 repository='https://chromium.googlesource.com/chromium/src', |
| 171 branch='master', | 171 branch='master', |
| 172 project='src', | 172 project='src', |
| 173 ) | 173 ) |
| 174 yield api.test(_sanitize_nonalpha(bot_id)) + props | 174 yield api.test(_sanitize_nonalpha(bot_id)) + props |
| 175 |
| 176 yield ( |
| 177 api.test('cronet_try') + |
| 178 api.properties.tryserver(buildername="android_cronet_tester") |
| 179 ) |
| OLD | NEW |