| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 'buildername': 'Android Arm64 Builder (dbg)', | 76 'buildername': 'Android Arm64 Builder (dbg)', |
| 77 }, analyze_mode='compile'), | 77 }, analyze_mode='compile'), |
| 78 'android_blink_rel': simple_bot({ | 78 'android_blink_rel': simple_bot({ |
| 79 'mastername': 'chromium.webkit', | 79 'mastername': 'chromium.webkit', |
| 80 'buildername': 'WebKit Android (Nexus4)', | 80 'buildername': 'WebKit Android (Nexus4)', |
| 81 }), | 81 }), |
| 82 'android_clang_dbg_recipe': simple_bot({ | 82 'android_clang_dbg_recipe': simple_bot({ |
| 83 'mastername': 'chromium.linux', | 83 'mastername': 'chromium.linux', |
| 84 'buildername': 'Android Clang Builder (dbg)', | 84 'buildername': 'Android Clang Builder (dbg)', |
| 85 }, analyze_mode='compile'), | 85 }, analyze_mode='compile'), |
| 86 'android_chromium_gn_rel': simple_bot({ | |
| 87 'mastername': 'chromium.linux', | |
| 88 'buildername': 'Android GN', | |
| 89 }), | |
| 90 'android_chromium_gn_compile_dbg': simple_bot({ | |
| 91 'mastername': 'chromium.linux', | |
| 92 'buildername': 'Android GN (dbg)', | |
| 93 }, analyze_mode='compile'), | |
| 94 'android_chromium_gn_compile_rel': simple_bot({ | |
| 95 'mastername': 'chromium.linux', | |
| 96 'buildername': 'Android GN', | |
| 97 }, analyze_mode='compile'), | |
| 98 'android_compile_dbg': simple_bot({ | 86 'android_compile_dbg': simple_bot({ |
| 99 'mastername': 'chromium.linux', | 87 'mastername': 'chromium.linux', |
| 100 'buildername': 'Android Builder (dbg)', | 88 'buildername': 'Android Builder (dbg)', |
| 101 }, analyze_mode='compile'), | 89 }, analyze_mode='compile'), |
| 102 'android_compile_mips_dbg': simple_bot({ | 90 'android_compile_mips_dbg': simple_bot({ |
| 103 'mastername': 'chromium.android', | 91 'mastername': 'chromium.android', |
| 104 'buildername': 'Android MIPS Builder (dbg)', | 92 'buildername': 'Android MIPS Builder (dbg)', |
| 105 }, analyze_mode='compile'), | 93 }, analyze_mode='compile'), |
| 106 'android_compile_x64_dbg': simple_bot({ | 94 'android_compile_x64_dbg': simple_bot({ |
| 107 'mastername': 'chromium.android', | 95 'mastername': 'chromium.android', |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 'mastername': 'client.v8.fyi', | 572 'mastername': 'client.v8.fyi', |
| 585 'buildername': 'V8 Linux GN', | 573 'buildername': 'V8 Linux GN', |
| 586 }), | 574 }), |
| 587 'v8_android_chromium_gn_dbg': simple_bot({ | 575 'v8_android_chromium_gn_dbg': simple_bot({ |
| 588 'mastername': 'client.v8.fyi', | 576 'mastername': 'client.v8.fyi', |
| 589 'buildername': 'V8 Android GN (dbg)', | 577 'buildername': 'V8 Android GN (dbg)', |
| 590 }), | 578 }), |
| 591 }, | 579 }, |
| 592 }, | 580 }, |
| 593 }) | 581 }) |
| OLD | NEW |