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 1568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1579 'mixins': ['clang'], | 1579 'mixins': ['clang'], |
1580 }, | 1580 }, |
1581 | 1581 |
1582 'clang': { | 1582 'clang': { |
1583 'gn_args': 'is_clang=true', | 1583 'gn_args': 'is_clang=true', |
1584 }, | 1584 }, |
1585 | 1585 |
1586 'cronet': { | 1586 'cronet': { |
1587 'gn_args': ('disable_file_support=true disable_ftp_support=true ' | 1587 'gn_args': ('disable_file_support=true disable_ftp_support=true ' |
1588 'enable_websockets=false use_platform_icu_alternatives=true ' | 1588 'enable_websockets=false use_platform_icu_alternatives=true ' |
1589 'disable_brotli_filter=true'), | 1589 'disable_brotli_filter=true use_partition_alloc=false'), |
1590 }, | 1590 }, |
1591 | 1591 |
1592 'cros_chrome_sdk': { | 1592 'cros_chrome_sdk': { |
1593 # This is used so that the cros chrome_sdk (simplechrome) builders | 1593 # This is used so that the cros chrome_sdk (simplechrome) builders |
1594 # can manage the list of GN args in their .ebuild | 1594 # can manage the list of GN args in their .ebuild |
1595 # files and just pass through the desired arguments, hence not | 1595 # files and just pass through the desired arguments, hence not |
1596 # really using MB. If a bot uses this mixin, we expect that | 1596 # really using MB. If a bot uses this mixin, we expect that |
1597 # both GYP_DEFINES and GN_ARGS are set in the environment, | 1597 # both GYP_DEFINES and GN_ARGS are set in the environment, |
1598 # and that GYP_DEFINES has chromeos=1 and GN_ARGS has | 1598 # and that GYP_DEFINES has chromeos=1 and GN_ARGS has |
1599 # target_os="chromeos" in it. | 1599 # target_os="chromeos" in it. |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1860 | 1860 |
1861 'x64': { | 1861 'x64': { |
1862 'gn_args': 'target_cpu="x64"', | 1862 'gn_args': 'target_cpu="x64"', |
1863 }, | 1863 }, |
1864 | 1864 |
1865 'x86': { | 1865 'x86': { |
1866 'gn_args': 'target_cpu="x86"', | 1866 'gn_args': 'target_cpu="x86"', |
1867 }, | 1867 }, |
1868 }, | 1868 }, |
1869 } | 1869 } |
OLD | NEW |