| 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 2204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2215 'static': { | 2215 'static': { |
| 2216 'gn_args': 'is_component_build=false', | 2216 'gn_args': 'is_component_build=false', |
| 2217 'gyp_defines': 'component=static_library', | 2217 'gyp_defines': 'component=static_library', |
| 2218 }, | 2218 }, |
| 2219 | 2219 |
| 2220 'swarming': { | 2220 'swarming': { |
| 2221 'gn_args': '', | 2221 'gn_args': '', |
| 2222 'gyp_defines': 'test_isolation_mode=prepare', | 2222 'gyp_defines': 'test_isolation_mode=prepare', |
| 2223 }, | 2223 }, |
| 2224 | 2224 |
| 2225 # TODO(dpranke): Remove the symbolized config after the bots are gone. |
| 2225 'symbolized': { | 2226 'symbolized': { |
| 2226 'gn_args': 'error', # TODO(GYP): add an equivalent flag for this | 2227 'gn_args': 'symbolized=true', |
| 2227 'gyp_defines': | 2228 'gyp_defines': |
| 2228 'release_extra_cflags="-O1 -fno-inline-functions -fno-inline"', | 2229 'release_extra_cflags="-O1 -fno-inline-functions -fno-inline"', |
| 2229 }, | 2230 }, |
| 2230 | 2231 |
| 2231 'syzyasan': { | 2232 'syzyasan': { |
| 2232 'gn_args': 'is_syzyasan=true', | 2233 'gn_args': 'is_syzyasan=true', |
| 2233 'gyp_defines': 'syzyasan=1' | 2234 'gyp_defines': 'syzyasan=1' |
| 2234 }, | 2235 }, |
| 2235 | 2236 |
| 2236 'tsan': { | 2237 'tsan': { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2287 }, | 2288 }, |
| 2288 | 2289 |
| 2289 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, | 2290 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, |
| 2290 | 2291 |
| 2291 'drmemory': { | 2292 'drmemory': { |
| 2292 'gn_args': 'is_component_build=true enable_iterator_debugging=false', | 2293 'gn_args': 'is_component_build=true enable_iterator_debugging=false', |
| 2293 'gyp_defines': 'component=shared_library build_for_tool=drmemory', | 2294 'gyp_defines': 'component=shared_library build_for_tool=drmemory', |
| 2294 }, | 2295 }, |
| 2295 }, | 2296 }, |
| 2296 } | 2297 } |
| OLD | NEW |