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 infra.libs.infra_types import freeze |
6 | 6 |
7 DEPS = [ | 7 DEPS = [ |
8 'cronet', | 8 'cronet', |
9 'path', | 9 'path', |
10 'properties', | 10 'properties', |
11 ] | 11 ] |
12 | 12 |
13 BUILDERS = freeze({ | 13 BUILDERS = freeze({ |
14 'local_test': { | 14 'local_test': { |
15 'recipe_config': 'main_builder', | 15 'recipe_config': 'main_builder', |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 def GenTests(api): | 149 def GenTests(api): |
150 for bot_id in BUILDERS.keys(): | 150 for bot_id in BUILDERS.keys(): |
151 props = api.properties.generic( | 151 props = api.properties.generic( |
152 buildername=bot_id, | 152 buildername=bot_id, |
153 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00', | 153 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00', |
154 repository='https://chromium.googlesource.com/chromium/src', | 154 repository='https://chromium.googlesource.com/chromium/src', |
155 branch='master', | 155 branch='master', |
156 project='src', | 156 project='src', |
157 ) | 157 ) |
158 yield api.test(_sanitize_nonalpha(bot_id)) + props | 158 yield api.test(_sanitize_nonalpha(bot_id)) + props |
OLD | NEW |