| 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 1686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1697 | 1697 |
| 1698 'msan': { | 1698 'msan': { |
| 1699 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li
braries=true', | 1699 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li
braries=true', |
| 1700 }, | 1700 }, |
| 1701 | 1701 |
| 1702 'msan_no_origins': { | 1702 'msan_no_origins': { |
| 1703 'gn_args': 'is_msan=true msan_track_origins=0 use_prebuilt_instrumented_li
braries=true', | 1703 'gn_args': 'is_msan=true msan_track_origins=0 use_prebuilt_instrumented_li
braries=true', |
| 1704 }, | 1704 }, |
| 1705 | 1705 |
| 1706 'no_pch': { | 1706 'no_pch': { |
| 1707 'gn_args': 'disable_precompiled_headers=true', | 1707 'gn_args': 'enable_precompiled_headers=false', |
| 1708 }, | 1708 }, |
| 1709 | 1709 |
| 1710 'no_symbols': { | 1710 'no_symbols': { |
| 1711 'gn_args': 'symbol_level=0', | 1711 'gn_args': 'symbol_level=0', |
| 1712 }, | 1712 }, |
| 1713 | 1713 |
| 1714 'official': { | 1714 'official': { |
| 1715 'mixins': ['official_optimize'], | 1715 'mixins': ['official_optimize'], |
| 1716 'gn_args': 'is_chrome_branded=true', | 1716 'gn_args': 'is_chrome_branded=true', |
| 1717 }, | 1717 }, |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1822 | 1822 |
| 1823 'x64': { | 1823 'x64': { |
| 1824 'gn_args': 'target_cpu="x64"', | 1824 'gn_args': 'target_cpu="x64"', |
| 1825 }, | 1825 }, |
| 1826 | 1826 |
| 1827 'x86': { | 1827 'x86': { |
| 1828 'gn_args': 'target_cpu="x86"', | 1828 'gn_args': 'target_cpu="x86"', |
| 1829 }, | 1829 }, |
| 1830 }, | 1830 }, |
| 1831 } | 1831 } |
| OLD | NEW |