| 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 1768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1779 'gn_args': 'optimize_for_fuzzing=true', | 1779 'gn_args': 'optimize_for_fuzzing=true', |
| 1780 }, | 1780 }, |
| 1781 | 1781 |
| 1782 'ozone': { | 1782 'ozone': { |
| 1783 'gn_args': 'use_ozone=true', | 1783 'gn_args': 'use_ozone=true', |
| 1784 }, | 1784 }, |
| 1785 | 1785 |
| 1786 'ozone_linux': { | 1786 'ozone_linux': { |
| 1787 'gn_args': ('ozone_auto_platforms=false ozone_platform_wayland=true ' | 1787 'gn_args': ('ozone_auto_platforms=false ozone_platform_wayland=true ' |
| 1788 'ozone_platform_x11=true ozone_platform_gbm=true ' | 1788 'ozone_platform_x11=true ozone_platform_gbm=true ' |
| 1789 'use_ozone=true use_ash=false'), | 1789 'enable_package_mash_services=true use_ash=false'), |
| 1790 }, | 1790 }, |
| 1791 | 1791 |
| 1792 'pdf_xfa': { | 1792 'pdf_xfa': { |
| 1793 'gn_args': 'pdf_enable_xfa=true', | 1793 'gn_args': 'pdf_enable_xfa=true', |
| 1794 }, | 1794 }, |
| 1795 | 1795 |
| 1796 # Note: This is probably not what you want to use. Instead use one of the | 1796 # Note: This is probably not what you want to use. Instead use one of the |
| 1797 # chrome_with_codecs or chromeos_with_codecs mixins. | 1797 # chrome_with_codecs or chromeos_with_codecs mixins. |
| 1798 'proprietary_codecs': { | 1798 'proprietary_codecs': { |
| 1799 'gn_args': 'proprietary_codecs=true', | 1799 'gn_args': 'proprietary_codecs=true', |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1877 | 1877 |
| 1878 'x64': { | 1878 'x64': { |
| 1879 'gn_args': 'target_cpu="x64"', | 1879 'gn_args': 'target_cpu="x64"', |
| 1880 }, | 1880 }, |
| 1881 | 1881 |
| 1882 'x86': { | 1882 'x86': { |
| 1883 'gn_args': 'target_cpu="x86"', | 1883 'gn_args': 'target_cpu="x86"', |
| 1884 }, | 1884 }, |
| 1885 }, | 1885 }, |
| 1886 } | 1886 } |
| OLD | NEW |