| 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 }, analyze_mode='compile'), | 321 }, analyze_mode='compile'), |
| 322 'chromeos_daisy_chromium_compile_only_ng': simple_bot({ | 322 'chromeos_daisy_chromium_compile_only_ng': simple_bot({ |
| 323 'mastername': 'chromium.chromiumos', | 323 'mastername': 'chromium.chromiumos', |
| 324 'buildername': 'ChromiumOS daisy Compile', | 324 'buildername': 'ChromiumOS daisy Compile', |
| 325 }, analyze_mode='compile'), | 325 }, analyze_mode='compile'), |
| 326 'linux_chromium_chromeos_compile_rel_ng': simple_bot({ | 326 'linux_chromium_chromeos_compile_rel_ng': simple_bot({ |
| 327 'mastername': 'chromium.chromiumos', | 327 'mastername': 'chromium.chromiumos', |
| 328 'buildername': 'Linux ChromiumOS Builder', | 328 'buildername': 'Linux ChromiumOS Builder', |
| 329 }, analyze_mode='compile'), | 329 }, analyze_mode='compile'), |
| 330 'linux_chromium_chromeos_msan_rel_ng': simple_bot({ | 330 'linux_chromium_chromeos_msan_rel_ng': simple_bot({ |
| 331 'mastername': 'chromium.memory.fyi', | 331 'mastername': 'chromium.memory.full', |
| 332 'buildername': 'Chromium Linux ChromeOS MSan Builder', | 332 'buildername': 'Chromium Linux ChromeOS MSan Builder', |
| 333 'tester': 'Linux ChromeOS MSan Tests', | 333 'tester': 'Linux ChromeOS MSan Tests', |
| 334 }), | 334 }), |
| 335 'linux_chromium_chromeos_ozone_rel_ng': simple_bot({ | 335 'linux_chromium_chromeos_ozone_rel_ng': simple_bot({ |
| 336 'mastername': 'chromium.chromiumos', | 336 'mastername': 'chromium.chromiumos', |
| 337 'buildername': 'Linux ChromiumOS Ozone Builder', | 337 'buildername': 'Linux ChromiumOS Ozone Builder', |
| 338 'tester': 'Linux ChromiumOS Ozone Tests (1)', | 338 'tester': 'Linux ChromiumOS Ozone Tests (1)', |
| 339 }), | 339 }), |
| 340 'linux_chromium_compile_dbg_32_ng': simple_bot({ | 340 'linux_chromium_compile_dbg_32_ng': simple_bot({ |
| 341 'mastername': 'chromium.linux', | 341 'mastername': 'chromium.linux', |
| 342 'buildername': 'Linux Builder (dbg)(32)', | 342 'buildername': 'Linux Builder (dbg)(32)', |
| 343 }, analyze_mode='compile'), | 343 }, analyze_mode='compile'), |
| 344 'linux_chromium_msan_rel_ng': simple_bot({ | 344 'linux_chromium_msan_rel_ng': simple_bot({ |
| 345 'mastername': 'chromium.memory.fyi', | 345 'mastername': 'chromium.memory.full', |
| 346 'buildername': 'Chromium Linux MSan Builder', | 346 'buildername': 'Chromium Linux MSan Builder', |
| 347 'tester': 'Linux MSan Tests', | 347 'tester': 'Linux MSan Tests', |
| 348 }), | 348 }), |
| 349 'linux_chromium_tsan_rel_ng': simple_bot({ | 349 'linux_chromium_tsan_rel_ng': simple_bot({ |
| 350 'mastername': 'chromium.memory.fyi', | 350 'mastername': 'chromium.memory.full', |
| 351 'buildername': 'Chromium Linux TSan Builder', | 351 'buildername': 'Chromium Linux TSan Builder', |
| 352 'tester': 'Linux TSan Tests', | 352 'tester': 'Linux TSan Tests', |
| 353 }), | 353 }), |
| 354 'linux_chromium_cfi_rel_ng': simple_bot({ | 354 'linux_chromium_cfi_rel_ng': simple_bot({ |
| 355 'mastername': 'chromium.fyi', | 355 'mastername': 'chromium.fyi', |
| 356 'buildername': 'CFI Linux', | 356 'buildername': 'CFI Linux', |
| 357 }), | 357 }), |
| 358 'linux_site_isolation': simple_bot({ | 358 'linux_site_isolation': simple_bot({ |
| 359 'mastername': 'chromium.fyi', | 359 'mastername': 'chromium.fyi', |
| 360 'buildername': 'Site Isolation Linux', | 360 'buildername': 'Site Isolation Linux', |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 'mastername': 'client.v8.fyi', | 575 'mastername': 'client.v8.fyi', |
| 576 'buildername': 'V8 Linux GN', | 576 'buildername': 'V8 Linux GN', |
| 577 }), | 577 }), |
| 578 'v8_android_chromium_gn_dbg': simple_bot({ | 578 'v8_android_chromium_gn_dbg': simple_bot({ |
| 579 'mastername': 'client.v8.fyi', | 579 'mastername': 'client.v8.fyi', |
| 580 'buildername': 'V8 Android GN (dbg)', | 580 'buildername': 'V8 Android GN (dbg)', |
| 581 }), | 581 }), |
| 582 }, | 582 }, |
| 583 }, | 583 }, |
| 584 }) | 584 }) |
| OLD | NEW |