| 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 1583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1594 | 1594 |
| 1595 'asan': { | 1595 'asan': { |
| 1596 'gn_args': 'is_asan=true', | 1596 'gn_args': 'is_asan=true', |
| 1597 'gyp_defines': 'asan=1', | 1597 'gyp_defines': 'asan=1', |
| 1598 }, | 1598 }, |
| 1599 | 1599 |
| 1600 # Removes dependencies on X11 and audio libraries for a containerized | 1600 # Removes dependencies on X11 and audio libraries for a containerized |
| 1601 # build. | 1601 # build. |
| 1602 'blimp': { | 1602 'blimp': { |
| 1603 'gn_args': ('use_aura=true use_ozone=true use_alsa=false ' | 1603 'gn_args': ('use_aura=true use_ozone=true use_alsa=false ' |
| 1604 'use_pulseaudio=false use_cups=false use_glib=false'), | 1604 'use_pulseaudio=false use_cups=false use_glib=false ' |
| 1605 'use_low_quality_image_interpolation=true'), |
| 1605 'gyp_defines': ('use_aura=1 use_ozone=1 use_alsa=0 ' | 1606 'gyp_defines': ('use_aura=1 use_ozone=1 use_alsa=0 ' |
| 1606 'use_pulseaudio=0 use_cups=0 use_glib=0'), | 1607 'use_pulseaudio=0 use_cups=0 use_glib=0'), |
| 1607 }, | 1608 }, |
| 1608 | 1609 |
| 1609 'cast': { | 1610 'cast': { |
| 1610 'gn_args': 'is_chromecast=true', | 1611 'gn_args': 'is_chromecast=true', |
| 1611 'gyp_defines': 'chromecast=1', | 1612 'gyp_defines': 'chromecast=1', |
| 1612 }, | 1613 }, |
| 1613 | 1614 |
| 1614 'cfi': { | 1615 'cfi': { |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1882 'gn_args': 'is_component_build=true enable_iterator_debugging=false', | 1883 'gn_args': 'is_component_build=true enable_iterator_debugging=false', |
| 1883 'gyp_defines': 'component=shared_library build_for_tool=drmemory', | 1884 'gyp_defines': 'component=shared_library build_for_tool=drmemory', |
| 1884 }, | 1885 }, |
| 1885 | 1886 |
| 1886 'valgrind': { | 1887 'valgrind': { |
| 1887 # TODO: add gn_args for 'build_for_tool=memcheck' | 1888 # TODO: add gn_args for 'build_for_tool=memcheck' |
| 1888 'gyp_defines': 'build_for_tool=memcheck', | 1889 'gyp_defines': 'build_for_tool=memcheck', |
| 1889 } | 1890 } |
| 1890 }, | 1891 }, |
| 1891 } | 1892 } |
| OLD | NEW |