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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
287 'Android Builder': 'official_goma_minimal_symbols_android', | 287 'Android Builder': 'official_goma_minimal_symbols_android', |
288 'Android arm64 Builder': 'official_goma_minimal_symbols_android_arm64', | 288 'Android arm64 Builder': 'official_goma_minimal_symbols_android_arm64', |
289 'Linux Builder': 'official_goma', | 289 'Linux Builder': 'official_goma', |
290 'Mac Builder': 'official_goma', | 290 'Mac Builder': 'official_goma', |
291 'Win Builder': 'official_goma_x86', | 291 'Win Builder': 'official_goma_x86', |
292 'Win x64 Builder': 'official_goma', | 292 'Win x64 Builder': 'official_goma', |
293 }, | 293 }, |
294 | 294 |
295 'chromium.perf.fyi': { | 295 'chromium.perf.fyi': { |
296 'Win Builder': 'official_goma', | 296 'Win Builder': 'official_goma', |
297 'Win Clang Builder': 'official_clang', | |
Dirk Pranke
2016/09/23 23:27:11
Actually, to confirm ... this won't use goma, and
hans
2016/09/26 21:03:30
Following up in https://codereview.chromium.org/23
| |
297 }, | 298 }, |
298 | 299 |
299 'client.nacl.sdk': { | 300 'client.nacl.sdk': { |
300 'linux-sdk-asan-multi': 'release_bot', | 301 'linux-sdk-asan-multi': 'release_bot', |
301 'linux-sdk-multi': 'release_bot', | 302 'linux-sdk-multi': 'release_bot', |
302 'linux-sdk-multirel': 'release_bot', | 303 'linux-sdk-multirel': 'release_bot', |
303 'mac-sdk-multi': 'release_bot', | 304 'mac-sdk-multi': 'release_bot', |
304 'mac-sdk-multirel': 'release_bot', | 305 'mac-sdk-multirel': 'release_bot', |
305 'windows-sdk-multi': 'release_bot_x86', | 306 'windows-sdk-multi': 'release_bot_x86', |
306 'windows-sdk-multirel': 'release_bot_x86', | 307 'windows-sdk-multirel': 'release_bot_x86', |
(...skipping 1429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1736 'gn_args': 'target_cpu="x86"', | 1737 'gn_args': 'target_cpu="x86"', |
1737 }, | 1738 }, |
1738 | 1739 |
1739 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, | 1740 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, |
1740 | 1741 |
1741 'drmemory': { | 1742 'drmemory': { |
1742 'gn_args': 'is_component_build=true enable_iterator_debugging=false', | 1743 'gn_args': 'is_component_build=true enable_iterator_debugging=false', |
1743 }, | 1744 }, |
1744 }, | 1745 }, |
1745 } | 1746 } |
OLD | NEW |