| 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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 'win_chromium_compile_dbg_ng_exp': simple_bot({ | 573 'win_chromium_compile_dbg_ng_exp': simple_bot({ |
| 574 'mastername': 'chromium.win', | 574 'mastername': 'chromium.win', |
| 575 'buildername': 'Win Builder (dbg)', | 575 'buildername': 'Win Builder (dbg)', |
| 576 }, analyze_mode='compile'), | 576 }, analyze_mode='compile'), |
| 577 'win_chromium_compile_rel_ng': simple_bot({ | 577 'win_chromium_compile_rel_ng': simple_bot({ |
| 578 'mastername': 'chromium.win', | 578 'mastername': 'chromium.win', |
| 579 'buildername': 'Win Builder', | 579 'buildername': 'Win Builder', |
| 580 }, analyze_mode='compile'), | 580 }, analyze_mode='compile'), |
| 581 'win_chromium_x64_rel_ng': simple_bot({ | 581 'win_chromium_x64_rel_ng': simple_bot({ |
| 582 'mastername': 'chromium.win', | 582 'mastername': 'chromium.win', |
| 583 'buildername': 'Win x64 Builder', | 583 'buildername': 'Win x64 GN', |
| 584 'tester': 'Win 7 Tests x64 (1)', | 584 'tester': 'Win x64 GN', |
| 585 }), | 585 }), |
| 586 'win_chromium_x64_rel_ng_exp': simple_bot({ | 586 'win_chromium_x64_rel_ng_exp': simple_bot({ |
| 587 'mastername': 'chromium.win', | 587 'mastername': 'chromium.win', |
| 588 'buildername': 'Win x64 Builder', | 588 'buildername': 'Win x64 Builder', |
| 589 'tester': 'Win 7 Tests x64 (1)', | 589 'tester': 'Win 7 Tests x64 (1)', |
| 590 }), | 590 }), |
| 591 'win8_chromium_ng': simple_bot({ | 591 'win8_chromium_ng': simple_bot({ |
| 592 'mastername': 'chromium.win', | 592 'mastername': 'chromium.win', |
| 593 'buildername': 'Win8 Aura', | 593 'buildername': 'Win8 Aura', |
| 594 }), | 594 }), |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 }, | 636 }, |
| 637 'tryserver.v8': { | 637 'tryserver.v8': { |
| 638 'builders': { | 638 'builders': { |
| 639 'v8_linux_blink_rel': simple_bot({ | 639 'v8_linux_blink_rel': simple_bot({ |
| 640 'mastername': 'chromium.webkit', | 640 'mastername': 'chromium.webkit', |
| 641 'buildername': 'WebKit Linux', | 641 'buildername': 'WebKit Linux', |
| 642 }), | 642 }), |
| 643 }, | 643 }, |
| 644 }, | 644 }, |
| 645 }) | 645 }) |
| OLD | NEW |