| 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 1734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1745 | 1745 |
| 1746 'msan': { | 1746 'msan': { |
| 1747 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li
braries=true', | 1747 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li
braries=true', |
| 1748 }, | 1748 }, |
| 1749 | 1749 |
| 1750 'msan_no_origins': { | 1750 'msan_no_origins': { |
| 1751 'gn_args': 'is_msan=true msan_track_origins=0 use_prebuilt_instrumented_li
braries=true', | 1751 'gn_args': 'is_msan=true msan_track_origins=0 use_prebuilt_instrumented_li
braries=true', |
| 1752 }, | 1752 }, |
| 1753 | 1753 |
| 1754 'ndk_next': { | 1754 'ndk_next': { |
| 1755 # GCC is unsupported starting in r13. |
| 1756 'mixins': ['clang'], |
| 1755 'gn_args': 'android_ndk_version="r13b" android_ndk_major_version=13', | 1757 'gn_args': 'android_ndk_version="r13b" android_ndk_major_version=13', |
| 1756 }, | 1758 }, |
| 1757 | 1759 |
| 1758 'no_pch': { | 1760 'no_pch': { |
| 1759 'gn_args': 'enable_precompiled_headers=false', | 1761 'gn_args': 'enable_precompiled_headers=false', |
| 1760 }, | 1762 }, |
| 1761 | 1763 |
| 1762 'no_symbols': { | 1764 'no_symbols': { |
| 1763 'gn_args': 'symbol_level=0', | 1765 'gn_args': 'symbol_level=0', |
| 1764 }, | 1766 }, |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1874 | 1876 |
| 1875 'x64': { | 1877 'x64': { |
| 1876 'gn_args': 'target_cpu="x64"', | 1878 'gn_args': 'target_cpu="x64"', |
| 1877 }, | 1879 }, |
| 1878 | 1880 |
| 1879 'x86': { | 1881 'x86': { |
| 1880 'gn_args': 'target_cpu="x86"', | 1882 'gn_args': 'target_cpu="x86"', |
| 1881 }, | 1883 }, |
| 1882 }, | 1884 }, |
| 1883 } | 1885 } |
| OLD | NEW |