OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 | 6 |
7 | 7 |
8 def simple_bot(bot_id, analyze_mode=None): | 8 def simple_bot(bot_id, analyze_mode=None): |
9 return { | 9 return { |
10 'bot_ids': [bot_id], | 10 'bot_ids': [bot_id], |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 }), | 220 }), |
221 'win_angle_x64_dbg_ng': simple_bot({ | 221 'win_angle_x64_dbg_ng': simple_bot({ |
222 'mastername': 'chromium.gpu.fyi', | 222 'mastername': 'chromium.gpu.fyi', |
223 'buildername': 'GPU Win x64 Builder (dbg)', | 223 'buildername': 'GPU Win x64 Builder (dbg)', |
224 'tester': 'Win7 x64 Debug (NVIDIA)', | 224 'tester': 'Win7 x64 Debug (NVIDIA)', |
225 }), | 225 }), |
226 }, | 226 }, |
227 }, | 227 }, |
228 'tryserver.chromium.linux': { | 228 'tryserver.chromium.linux': { |
229 'builders': { | 229 'builders': { |
| 230 'blimp_linux_dbg': simple_bot({ |
| 231 'mastername': 'chromium.linux', |
| 232 'buildername': 'Blimp Linux (dbg)', |
| 233 }), |
230 'cast_shell_linux': simple_bot({ | 234 'cast_shell_linux': simple_bot({ |
231 'mastername': 'chromium.linux', | 235 'mastername': 'chromium.linux', |
232 'buildername': 'Cast Linux', | 236 'buildername': 'Cast Linux', |
233 }), | 237 }), |
234 'linux_arm': simple_bot({ | 238 'linux_arm': simple_bot({ |
235 'mastername': 'chromium.fyi', | 239 'mastername': 'chromium.fyi', |
236 'buildername': 'Linux ARM', | 240 'buildername': 'Linux ARM', |
237 }), | 241 }), |
238 'linux_chromium_browser_side_navigation_rel': simple_bot({ | 242 'linux_chromium_browser_side_navigation_rel': simple_bot({ |
239 'mastername': 'chromium.fyi', | 243 'mastername': 'chromium.fyi', |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 'mastername': 'client.v8.fyi', | 579 'mastername': 'client.v8.fyi', |
576 'buildername': 'V8 Linux GN', | 580 'buildername': 'V8 Linux GN', |
577 }), | 581 }), |
578 'v8_android_chromium_gn_dbg': simple_bot({ | 582 'v8_android_chromium_gn_dbg': simple_bot({ |
579 'mastername': 'client.v8.fyi', | 583 'mastername': 'client.v8.fyi', |
580 'buildername': 'V8 Android GN (dbg)', | 584 'buildername': 'V8 Android GN (dbg)', |
581 }), | 585 }), |
582 }, | 586 }, |
583 }, | 587 }, |
584 }) | 588 }) |
OLD | NEW |