Chromium Code Reviews| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 234 'gn_chromeos_with_codecs_debug_bot', | 234 'gn_chromeos_with_codecs_debug_bot', |
| 235 'MD Top Chrome Win material': | 235 'MD Top Chrome Win material': |
| 236 'gn_debug_bot_minimal_symbols_x64', | 236 'gn_debug_bot_minimal_symbols_x64', |
| 237 'MD Top Chrome Linux material': 'gn_debug_bot', | 237 'MD Top Chrome Linux material': 'gn_debug_bot', |
| 238 'LTO Linux': 'gn_official_goma_lto', | 238 'LTO Linux': 'gn_official_goma_lto', |
| 239 'LTO Linux Perf': 'gn_official_goma_lto', | 239 'LTO Linux Perf': 'gn_official_goma_lto', |
| 240 'Libfuzzer Upload Linux ASan': 'gn_release_libfuzzer_asan', | 240 'Libfuzzer Upload Linux ASan': 'gn_release_libfuzzer_asan', |
| 241 'Libfuzzer Upload Linux ASan Debug': 'gn_debug_libfuzzer_asan', | 241 'Libfuzzer Upload Linux ASan Debug': 'gn_debug_libfuzzer_asan', |
| 242 'Libfuzzer Upload Linux MSan': 'gn_release_libfuzzer_msan', | 242 'Libfuzzer Upload Linux MSan': 'gn_release_libfuzzer_msan', |
| 243 'Libfuzzer Upload Linux UBSan': 'gn_release_libfuzzer_ubsan', | 243 'Libfuzzer Upload Linux UBSan': 'gn_release_libfuzzer_ubsan', |
| 244 'Libfuzzer Upload Mac ASan': 'gn_release_libfuzzer_asan', | 244 'Libfuzzer Upload Mac ASan': 'gn_release_libfuzzer_mac_asan', |
| 245 'Linux ARM': 'swarming_gn_release_bot_arm', | 245 'Linux ARM': 'swarming_gn_release_bot_arm', |
| 246 'Linux deterministic': 'gn_release_bot', | 246 'Linux deterministic': 'gn_release_bot', |
| 247 'Linux remote_run Builder': 'swarming_gn_release_bot', | 247 'Linux remote_run Builder': 'swarming_gn_release_bot', |
| 248 'Linux remote_run Tester': 'swarming_gn_release_bot', | 248 'Linux remote_run Tester': 'swarming_gn_release_bot', |
| 249 'Linux V8 API Stability': 'gn_release_bot', | 249 'Linux V8 API Stability': 'gn_release_bot', |
| 250 'Mac deterministic': 'gn_release_bot_mac_strip', | 250 'Mac deterministic': 'gn_release_bot_mac_strip', |
| 251 'Mojo ChromiumOS': 'swarming_chromeos_gn_release_bot', | 251 'Mojo ChromiumOS': 'swarming_chromeos_gn_release_bot', |
| 252 'Mojo Windows': 'gn_release_bot_minimal_symbols_x86', | 252 'Mojo Windows': 'gn_release_bot_minimal_symbols_x86', |
| 253 'Site Isolation Linux': 'gn_release_trybot', | 253 'Site Isolation Linux': 'gn_release_trybot', |
| 254 'Site Isolation Win': 'gn_release_trybot_x86', | 254 'Site Isolation Win': 'gn_release_trybot_x86', |
| (...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1222 | 1222 |
| 1223 'gn_debug_bot': [ | 1223 'gn_debug_bot': [ |
| 1224 'gn', 'debug_bot', | 1224 'gn', 'debug_bot', |
| 1225 ], | 1225 ], |
| 1226 | 1226 |
| 1227 'gn_debug_bot_minimal_symbols_x86': [ | 1227 'gn_debug_bot_minimal_symbols_x86': [ |
| 1228 'gn', 'debug_bot_minimal_symbols', 'x86', | 1228 'gn', 'debug_bot_minimal_symbols', 'x86', |
| 1229 ], | 1229 ], |
| 1230 | 1230 |
| 1231 'gn_debug_libfuzzer_asan': [ | 1231 'gn_debug_libfuzzer_asan': [ |
| 1232 'gn', 'debug', 'libfuzzer', 'asan', 'proprietary_codecs', 'pdf_xfa', | 1232 'gn', 'debug', 'libfuzzer', 'asan', 'chromeos_with_codecs', 'pdf_xfa', |
| 1233 'disable_nacl', | 1233 'disable_nacl', |
| 1234 ], | 1234 ], |
| 1235 | 1235 |
| 1236 'gn_linux_upload': [ | 1236 'gn_linux_upload': [ |
| 1237 'gn_linux_upload', 'official', 'goma', | 1237 'gn_linux_upload', 'official', 'goma', |
| 1238 ], | 1238 ], |
| 1239 | 1239 |
| 1240 'gn_official': [ | 1240 'gn_official': [ |
| 1241 'gn', 'official', | 1241 'gn', 'official', |
| 1242 ], | 1242 ], |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1295 | 1295 |
| 1296 'gn_release_bot_minimal_symbols_x86': [ | 1296 'gn_release_bot_minimal_symbols_x86': [ |
| 1297 'gn', 'release_bot_minimal_symbols', 'x86', | 1297 'gn', 'release_bot_minimal_symbols', 'x86', |
| 1298 ], | 1298 ], |
| 1299 | 1299 |
| 1300 'gn_release_bot_x86': [ | 1300 'gn_release_bot_x86': [ |
| 1301 'gn', 'release_bot', 'x86', | 1301 'gn', 'release_bot', 'x86', |
| 1302 ], | 1302 ], |
| 1303 | 1303 |
| 1304 'gn_release_drmemory_drfuzz': [ | 1304 'gn_release_drmemory_drfuzz': [ |
| 1305 'gn', 'release', 'drmemory', 'drfuzz', 'proprietary_codecs', | 1305 'gn', 'release', 'drmemory', 'drfuzz', 'chrome_with_codecs', |
| 1306 ], | 1306 ], |
| 1307 | 1307 |
| 1308 'gn_release_drmemory_drfuzz_x86': [ | 1308 'gn_release_drmemory_drfuzz_x86': [ |
| 1309 'gn', 'release', 'drmemory', 'drfuzz', 'x86', 'proprietary_codecs', | 1309 'gn', 'release', 'drmemory', 'drfuzz', 'x86', 'chrome_with_codecs', |
| 1310 ], | 1310 ], |
| 1311 | 1311 |
| 1312 'gn_release_afl_asan': [ | 1312 'gn_release_afl_asan': [ |
| 1313 'gn', 'release', 'afl', 'asan', 'proprietary_codecs', 'pdf_xfa', | 1313 'gn', 'release', 'afl', 'asan', 'chromeos_with_codecs', 'pdf_xfa', |
| 1314 'disable_nacl', | |
| 1315 ], | |
| 1316 | |
| 1317 'gn_release_libfuzzer_mac_asan': [ | |
| 1318 'gn', 'release', 'libfuzzer', 'asan', 'chrome_with_codecs', 'pdf_xfa', | |
| 1314 'disable_nacl', | 1319 'disable_nacl', |
| 1315 ], | 1320 ], |
| 1316 | 1321 |
| 1317 'gn_release_libfuzzer_asan': [ | 1322 'gn_release_libfuzzer_asan': [ |
| 1318 'gn', 'release', 'libfuzzer', 'asan', 'proprietary_codecs', 'pdf_xfa', | 1323 'gn', 'release', 'libfuzzer', 'asan', 'chromeos_with_codecs', 'pdf_xfa', |
| 1319 'disable_nacl', | |
| 1320 ], | |
| 1321 | |
| 1322 'gn_release_libfuzzer_asan': [ | |
| 1323 'gn', 'release', 'libfuzzer', 'asan', 'proprietary_codecs', 'pdf_xfa', | |
| 1324 'disable_nacl', | 1324 'disable_nacl', |
| 1325 ], | 1325 ], |
| 1326 | 1326 |
| 1327 'gn_release_libfuzzer_msan': [ | 1327 'gn_release_libfuzzer_msan': [ |
| 1328 'gn', 'release', 'libfuzzer', 'msan', 'proprietary_codecs', 'pdf_xfa', | 1328 'gn', 'release', 'libfuzzer', 'msan', 'chromeos_with_codecs', 'pdf_xfa', |
| 1329 'disable_nacl', | 1329 'disable_nacl', |
| 1330 ], | 1330 ], |
| 1331 'gn_release_libfuzzer_ubsan': [ | 1331 'gn_release_libfuzzer_ubsan': [ |
| 1332 'gn', 'release', 'libfuzzer', 'ubsan_security', 'proprietary_codecs', | 1332 'gn', 'release', 'libfuzzer', 'ubsan_security', 'chromeos_with_codecs', |
| 1333 'pdf_xfa', 'disable_nacl', | 1333 'pdf_xfa', 'disable_nacl', |
| 1334 ], | 1334 ], |
| 1335 | 1335 |
| 1336 'gn_release_trybot': [ | 1336 'gn_release_trybot': [ |
| 1337 'gn', 'release_trybot', | 1337 'gn', 'release_trybot', |
| 1338 ], | 1338 ], |
| 1339 | 1339 |
| 1340 'gn_release_trybot_x64': [ | 1340 'gn_release_trybot_x64': [ |
| 1341 'gn', 'release_trybot', 'x64', | 1341 'gn', 'release_trybot', 'x64', |
| 1342 ], | 1342 ], |
| (...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2347 'ozone': { | 2347 'ozone': { |
| 2348 'gn_args': 'use_ozone=true', | 2348 'gn_args': 'use_ozone=true', |
| 2349 'gyp_defines': 'use_ozone=1', | 2349 'gyp_defines': 'use_ozone=1', |
| 2350 }, | 2350 }, |
| 2351 | 2351 |
| 2352 'pdf_xfa': { | 2352 'pdf_xfa': { |
| 2353 'gn_args': 'pdf_enable_xfa=true', | 2353 'gn_args': 'pdf_enable_xfa=true', |
| 2354 'gyp_defines': 'pdf_enable_xfa=1', | 2354 'gyp_defines': 'pdf_enable_xfa=1', |
| 2355 }, | 2355 }, |
| 2356 | 2356 |
| 2357 # Note: This is probably not what you want to use. Instead use one of the | |
| 2358 # chrome_with_codecs or chromeos_with_codecs mixins. | |
|
Dirk Pranke
2016/08/19 20:18:35
arguably this shouldn't be a separate mixin at all
| |
| 2357 'proprietary_codecs': { | 2359 'proprietary_codecs': { |
| 2358 'gn_args': 'proprietary_codecs=true', | 2360 'gn_args': 'proprietary_codecs=true', |
| 2359 'gyp_defines': 'proprietary_codecs=1', | 2361 'gyp_defines': 'proprietary_codecs=1', |
| 2360 }, | 2362 }, |
| 2361 | 2363 |
| 2362 'release': { | 2364 'release': { |
| 2363 'gn_args': 'is_debug=false', | 2365 'gn_args': 'is_debug=false', |
| 2364 }, | 2366 }, |
| 2365 | 2367 |
| 2366 'release_bot': { | 2368 'release_bot': { |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2464 }, | 2466 }, |
| 2465 | 2467 |
| 2466 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, | 2468 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, |
| 2467 | 2469 |
| 2468 'drmemory': { | 2470 'drmemory': { |
| 2469 'gn_args': 'is_component_build=true enable_iterator_debugging=false', | 2471 'gn_args': 'is_component_build=true enable_iterator_debugging=false', |
| 2470 'gyp_defines': 'component=shared_library build_for_tool=drmemory', | 2472 'gyp_defines': 'component=shared_library build_for_tool=drmemory', |
| 2471 }, | 2473 }, |
| 2472 }, | 2474 }, |
| 2473 } | 2475 } |
| OLD | NEW |