| 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 'linux_chromium_dbg_32_ng': simple_bot({ | 251 'linux_chromium_dbg_32_ng': simple_bot({ |
| 252 'mastername': 'chromium.linux', | 252 'mastername': 'chromium.linux', |
| 253 'buildername': 'Linux Builder (dbg)(32)', | 253 'buildername': 'Linux Builder (dbg)(32)', |
| 254 'tester': 'Linux Tests (dbg)(1)(32)', | 254 'tester': 'Linux Tests (dbg)(1)(32)', |
| 255 }), | 255 }), |
| 256 'linux_chromium_dbg_ng': simple_bot({ | 256 'linux_chromium_dbg_ng': simple_bot({ |
| 257 'mastername': 'chromium.linux', | 257 'mastername': 'chromium.linux', |
| 258 'buildername': 'Linux Builder (dbg)', | 258 'buildername': 'Linux Builder (dbg)', |
| 259 'tester': 'Linux Tests (dbg)(1)', | 259 'tester': 'Linux Tests (dbg)(1)', |
| 260 }), | 260 }), |
| 261 'linux_chromium_gn_chromeos_dbg': simple_bot({ | |
| 262 'mastername': 'chromium.chromiumos', | |
| 263 'buildername': 'Linux ChromiumOS GN (dbg)', | |
| 264 }), | |
| 265 'linux_chromium_gn_chromeos_rel': simple_bot({ | |
| 266 'mastername': 'chromium.chromiumos', | |
| 267 'buildername': 'Linux ChromiumOS GN', | |
| 268 }), | |
| 269 'linux_chromium_rel_ng': { | 261 'linux_chromium_rel_ng': { |
| 270 'bot_ids': [ | 262 'bot_ids': [ |
| 271 { | 263 { |
| 272 'mastername': 'chromium.linux', | 264 'mastername': 'chromium.linux', |
| 273 'buildername': 'Linux Builder', | 265 'buildername': 'Linux Builder', |
| 274 'tester': 'Linux Tests', | 266 'tester': 'Linux Tests', |
| 275 }, | 267 }, |
| 276 { | 268 { |
| 277 'mastername': 'chromium.gpu', | 269 'mastername': 'chromium.gpu', |
| 278 'buildername': 'GPU Linux Builder', | 270 'buildername': 'GPU Linux Builder', |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 'mastername': 'client.v8.fyi', | 564 'mastername': 'client.v8.fyi', |
| 573 'buildername': 'V8 Linux GN', | 565 'buildername': 'V8 Linux GN', |
| 574 }), | 566 }), |
| 575 'v8_android_chromium_gn_dbg': simple_bot({ | 567 'v8_android_chromium_gn_dbg': simple_bot({ |
| 576 'mastername': 'client.v8.fyi', | 568 'mastername': 'client.v8.fyi', |
| 577 'buildername': 'V8 Android GN (dbg)', | 569 'buildername': 'V8 Android GN (dbg)', |
| 578 }), | 570 }), |
| 579 }, | 571 }, |
| 580 }, | 572 }, |
| 581 }) | 573 }) |
| OLD | NEW |