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 2445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2456 'release_extra_cflags="-O1 -fno-inline-functions -fno-inline"', | 2456 'release_extra_cflags="-O1 -fno-inline-functions -fno-inline"', |
2457 }, | 2457 }, |
2458 | 2458 |
2459 'syzyasan': { | 2459 'syzyasan': { |
2460 'gn_args': 'is_syzyasan=true', | 2460 'gn_args': 'is_syzyasan=true', |
2461 'gyp_defines': 'syzyasan=1' | 2461 'gyp_defines': 'syzyasan=1' |
2462 }, | 2462 }, |
2463 | 2463 |
2464 'thin_lto': { | 2464 'thin_lto': { |
2465 'gn_args': 'use_thin_lto=true', | 2465 'gn_args': 'use_thin_lto=true', |
2466 'mixins': ['cfi'], | 2466 'mixins': ['lto'], |
2467 }, | 2467 }, |
2468 | 2468 |
2469 'tsan': { | 2469 'tsan': { |
2470 'gn_args': 'is_tsan=true', | 2470 'gn_args': 'is_tsan=true', |
2471 'gyp_defines': 'tsan=1', | 2471 'gyp_defines': 'tsan=1', |
2472 }, | 2472 }, |
2473 | 2473 |
2474 'ubsan': { | 2474 'ubsan': { |
2475 'gn_args': 'is_ubsan=true', | 2475 'gn_args': 'is_ubsan=true', |
2476 'gyp_defines': 'ubsan=1', | 2476 'gyp_defines': 'ubsan=1', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2521 }, | 2521 }, |
2522 | 2522 |
2523 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, | 2523 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, |
2524 | 2524 |
2525 'drmemory': { | 2525 'drmemory': { |
2526 'gn_args': 'is_component_build=true enable_iterator_debugging=false', | 2526 'gn_args': 'is_component_build=true enable_iterator_debugging=false', |
2527 'gyp_defines': 'component=shared_library build_for_tool=drmemory', | 2527 'gyp_defines': 'component=shared_library build_for_tool=drmemory', |
2528 }, | 2528 }, |
2529 }, | 2529 }, |
2530 } | 2530 } |
OLD | NEW |