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