| 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 # Take care when changing any of these builders to ensure that you do not | 10 # Take care when changing any of these builders to ensure that you do not |
| (...skipping 1670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1681 # actually work, so we need to pretend to be doing an ozone build | 1681 # actually work, so we need to pretend to be doing an ozone build |
| 1682 # in order for the flag to actually take effect. | 1682 # in order for the flag to actually take effect. |
| 1683 'gn_args': 'use_ozone=true', | 1683 'gn_args': 'use_ozone=true', |
| 1684 }, | 1684 }, |
| 1685 | 1685 |
| 1686 'gn': {'type': 'gn'}, | 1686 'gn': {'type': 'gn'}, |
| 1687 | 1687 |
| 1688 'goma': { | 1688 'goma': { |
| 1689 # The MB code will properly escape goma_dir if necessary in the GYP | 1689 # The MB code will properly escape goma_dir if necessary in the GYP |
| 1690 # code path; the GN code path needs no escaping. | 1690 # code path; the GN code path needs no escaping. |
| 1691 'gn_args': 'use_goma=true goma_dir="$(goma_dir)"', | 1691 'gn_args': 'use_goma=true', |
| 1692 'gyp_defines': 'use_goma=1 gomadir=$(goma_dir)', | 1692 'gyp_defines': 'use_goma=1', |
| 1693 }, | 1693 }, |
| 1694 | 1694 |
| 1695 'gpu_tests': { | 1695 'gpu_tests': { |
| 1696 'mixins': ['archive_gpu_tests', 'chrome_with_codecs'], | 1696 'mixins': ['archive_gpu_tests', 'chrome_with_codecs'], |
| 1697 }, | 1697 }, |
| 1698 | 1698 |
| 1699 'gyp': {'type': 'gyp'}, | 1699 'gyp': {'type': 'gyp'}, |
| 1700 | 1700 |
| 1701 'internal_gles2_conform_tests': { | 1701 'internal_gles2_conform_tests': { |
| 1702 'gn_args': 'internal_gles2_conform_tests=true', | 1702 'gn_args': 'internal_gles2_conform_tests=true', |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1833 'gn_args': 'is_component_build=true enable_iterator_debugging=false', | 1833 'gn_args': 'is_component_build=true enable_iterator_debugging=false', |
| 1834 'gyp_defines': 'component=shared_library build_for_tool=drmemory', | 1834 'gyp_defines': 'component=shared_library build_for_tool=drmemory', |
| 1835 }, | 1835 }, |
| 1836 | 1836 |
| 1837 'valgrind': { | 1837 'valgrind': { |
| 1838 # TODO: add gn_args for 'build_for_tool=memcheck' | 1838 # TODO: add gn_args for 'build_for_tool=memcheck' |
| 1839 'gyp_defines': 'build_for_tool=memcheck', | 1839 'gyp_defines': 'build_for_tool=memcheck', |
| 1840 } | 1840 } |
| 1841 }, | 1841 }, |
| 1842 } | 1842 } |
| OLD | NEW |