| 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 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1407 | 1407 |
| 1408 'tsan_disable_nacl_release_bot': [ | 1408 'tsan_disable_nacl_release_bot': [ |
| 1409 'tsan', 'disable_nacl', 'release_bot', | 1409 'tsan', 'disable_nacl', 'release_bot', |
| 1410 ], | 1410 ], |
| 1411 | 1411 |
| 1412 'tsan_disable_nacl_release_trybot': [ | 1412 'tsan_disable_nacl_release_trybot': [ |
| 1413 'tsan', 'disable_nacl', 'release_trybot', | 1413 'tsan', 'disable_nacl', 'release_trybot', |
| 1414 ], | 1414 ], |
| 1415 | 1415 |
| 1416 'ubsan_release_bot': [ | 1416 'ubsan_release_bot': [ |
| 1417 'ubsan', 'release_bot', | 1417 'ubsan', 'ubsan_no_recover_hack', 'release_bot', |
| 1418 ], | 1418 ], |
| 1419 | 1419 |
| 1420 'ubsan_vptr_edge_release_bot': [ | 1420 'ubsan_vptr_edge_release_bot': [ |
| 1421 'ubsan_vptr', 'edge', 'release_bot', | 1421 'ubsan_vptr', 'ubsan_no_recover_hack', 'edge', 'release_bot', |
| 1422 ], | 1422 ], |
| 1423 | 1423 |
| 1424 'ubsan_vptr_release_bot': [ | 1424 'ubsan_vptr_release_bot': [ |
| 1425 'ubsan_vptr', 'ubsan_no_recover_hack', 'release_bot', | 1425 'ubsan_vptr', 'ubsan_no_recover_hack', 'release_bot', |
| 1426 ], | 1426 ], |
| 1427 | 1427 |
| 1428 'ubsan_vptr_release_trybot': [ | 1428 'ubsan_vptr_release_trybot': [ |
| 1429 'ubsan_vptr', 'ubsan_no_recover_hack', 'release_trybot', | 1429 'ubsan_vptr', 'ubsan_no_recover_hack', 'release_trybot', |
| 1430 ], | 1430 ], |
| 1431 | 1431 |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1815 | 1815 |
| 1816 'x64': { | 1816 'x64': { |
| 1817 'gn_args': 'target_cpu="x64"', | 1817 'gn_args': 'target_cpu="x64"', |
| 1818 }, | 1818 }, |
| 1819 | 1819 |
| 1820 'x86': { | 1820 'x86': { |
| 1821 'gn_args': 'target_cpu="x86"', | 1821 'gn_args': 'target_cpu="x86"', |
| 1822 }, | 1822 }, |
| 1823 }, | 1823 }, |
| 1824 } | 1824 } |
| OLD | NEW |