| 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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 'tester': 'Linux TSan Tests', | 337 'tester': 'Linux TSan Tests', |
| 338 }), | 338 }), |
| 339 'linux_chromium_cfi_rel_ng': simple_bot({ | 339 'linux_chromium_cfi_rel_ng': simple_bot({ |
| 340 'mastername': 'chromium.fyi', | 340 'mastername': 'chromium.fyi', |
| 341 'buildername': 'CFI Linux', | 341 'buildername': 'CFI Linux', |
| 342 }), | 342 }), |
| 343 'linux_site_isolation': simple_bot({ | 343 'linux_site_isolation': simple_bot({ |
| 344 'mastername': 'chromium.fyi', | 344 'mastername': 'chromium.fyi', |
| 345 'buildername': 'Site Isolation Linux', | 345 'buildername': 'Site Isolation Linux', |
| 346 }), | 346 }), |
| 347 'linux_layout_tests_slimming_paint_v2': simple_bot({ |
| 348 'mastername': 'chromium.fyi', |
| 349 'buildername': 'WebKit Linux slimming_paint_v2 Dummy Builder', |
| 350 }), |
| 347 # Optional GPU bots. | 351 # Optional GPU bots. |
| 348 'linux_optional_gpu_tests_rel': { | 352 'linux_optional_gpu_tests_rel': { |
| 349 'bot_ids': [ | 353 'bot_ids': [ |
| 350 { | 354 { |
| 351 'mastername': 'chromium.gpu.fyi', | 355 'mastername': 'chromium.gpu.fyi', |
| 352 'buildername': 'GPU Linux Builder', | 356 'buildername': 'GPU Linux Builder', |
| 353 'tester': 'Optional Linux Release (NVIDIA)', | 357 'tester': 'Optional Linux Release (NVIDIA)', |
| 354 }, | 358 }, |
| 355 ], | 359 ], |
| 356 }, | 360 }, |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 'mastername': 'client.v8.fyi', | 559 'mastername': 'client.v8.fyi', |
| 556 'buildername': 'V8 Linux GN', | 560 'buildername': 'V8 Linux GN', |
| 557 }), | 561 }), |
| 558 'v8_android_chromium_gn_dbg': simple_bot({ | 562 'v8_android_chromium_gn_dbg': simple_bot({ |
| 559 'mastername': 'client.v8.fyi', | 563 'mastername': 'client.v8.fyi', |
| 560 'buildername': 'V8 Android GN (dbg)', | 564 'buildername': 'V8 Android GN (dbg)', |
| 561 }), | 565 }), |
| 562 }, | 566 }, |
| 563 }, | 567 }, |
| 564 }) | 568 }) |
| OLD | NEW |