Chromium Code Reviews| 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 { | 5 { |
| 6 # This is a map of buildbot master names -> buildbot builder names -> | 6 # This is a map of buildbot master names -> buildbot builder names -> |
| 7 # config names (where each config name is a key in the 'configs' dict, | 7 # config names (where each config name is a key in the 'configs' dict, |
| 8 # below). MB uses this dict to look up which config to use for a given bot. | 8 # below). MB uses this dict to look up which config to use for a given bot. |
| 9 'masters': { | 9 'masters': { |
| 10 'chromeos.chrome': { | 10 'chromeos.chrome': { |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 186 'Site Isolation Android': 'android_release_bot_minimal_symbols_arm64', | 186 'Site Isolation Android': 'android_release_bot_minimal_symbols_arm64', |
| 187 'Site Isolation Linux': 'release_trybot', | 187 'Site Isolation Linux': 'release_trybot', |
| 188 'Site Isolation Win': 'release_trybot_x86', | 188 'Site Isolation Win': 'release_trybot_x86', |
| 189 'ThinLTO Linux ToT': 'thin_lto_clang_tot_release_static', | 189 'ThinLTO Linux ToT': 'thin_lto_clang_tot_release_static', |
| 190 'UBSanVptr Linux': 'ubsan_vptr_release_bot', | 190 'UBSanVptr Linux': 'ubsan_vptr_release_bot', |
| 191 'WebKit Linux - TraceWrappables': 'debug_bot', | 191 'WebKit Linux - TraceWrappables': 'debug_bot', |
| 192 'WebKit Linux - WPTServe': 'release_bot', | 192 'WebKit Linux - WPTServe': 'release_bot', |
| 193 'WebKit Mac - WPTServe': 'release_bot', | 193 'WebKit Mac - WPTServe': 'release_bot', |
| 194 'WebKit Win - WPTServe': 'release_bot_x86', | 194 'WebKit Win - WPTServe': 'release_bot_x86', |
| 195 'WebKit Linux - RandomOrder': 'release_bot', | 195 'WebKit Linux - RandomOrder': 'release_bot', |
| 196 'WebKit Mac - RandomOrder': 'release_bot', | |
| 197 'WebKit Win - RandomOrder': 'release_bot_x86', # should this be x86? | |
|
Dirk Pranke
2016/11/18 20:17:45
I don't think it matters too much, but I'd probabl
| |
| 196 'Win 10 Fast Ring': 'release_trybot', | 198 'Win 10 Fast Ring': 'release_trybot', |
| 197 'Windows deterministic': 'release_bot_x86', | 199 'Windows deterministic': 'release_bot_x86', |
| 198 'Windows Clang deterministic': 'clang_release_bot_minimal_symbols_x86', | 200 'Windows Clang deterministic': 'clang_release_bot_minimal_symbols_x86', |
| 199 }, | 201 }, |
| 200 | 202 |
| 201 'chromium.goma': { | 203 'chromium.goma': { |
| 202 'Chromium Linux Goma Staging': 'release_bot', | 204 'Chromium Linux Goma Staging': 'release_bot', |
| 203 'Chromium Mac Goma Staging': 'release_bot', | 205 'Chromium Mac Goma Staging': 'release_bot', |
| 204 'CrWinGomaStaging': 'release_bot_x86', | 206 'CrWinGomaStaging': 'release_bot_x86', |
| 205 }, | 207 }, |
| (...skipping 1614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1820 | 1822 |
| 1821 'x64': { | 1823 'x64': { |
| 1822 'gn_args': 'target_cpu="x64"', | 1824 'gn_args': 'target_cpu="x64"', |
| 1823 }, | 1825 }, |
| 1824 | 1826 |
| 1825 'x86': { | 1827 'x86': { |
| 1826 'gn_args': 'target_cpu="x86"', | 1828 'gn_args': 'target_cpu="x86"', |
| 1827 }, | 1829 }, |
| 1828 }, | 1830 }, |
| 1829 } | 1831 } |
| OLD | NEW |