Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: tools/mb/mb_config.pyl

Issue 1915853005: Revert of Switch Android Builder on chromium.webkit to gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 'swarming_gpu_tests_gyp_release_trybot_minimal_symbols_x86', 506 'swarming_gpu_tests_gyp_release_trybot_minimal_symbols_x86',
507 }, 507 },
508 508
509 'client.v8.fyi': { 509 'client.v8.fyi': {
510 'Linux Debug Builder': 'gn_debug_bot', 510 'Linux Debug Builder': 'gn_debug_bot',
511 'V8 Android GN (dbg)': 'android_gn_debug_bot', 511 'V8 Android GN (dbg)': 'android_gn_debug_bot',
512 'V8 Linux GN': 'gn_release_bot', 512 'V8 Linux GN': 'gn_release_bot',
513 }, 513 },
514 514
515 'chromium.webkit': { 515 'chromium.webkit': {
516 'Android Builder': 'android_gn_release_bot_minimal_symbols', 516 'Android Builder': 'gyp_release_bot_android',
517 'WebKit Android (Nexus4)': 'none', 517 'WebKit Android (Nexus4)': 'gyp_release_bot_android',
518 'WebKit Linux (dbg)': 'swarming_gn_debug_bot_x64', 518 'WebKit Linux (dbg)': 'swarming_gn_debug_bot_x64',
519 'WebKit Linux ASAN': 'swarming_gn_asan_lsan_release_bot_x64', 519 'WebKit Linux ASAN': 'swarming_gn_asan_lsan_release_bot_x64',
520 'WebKit Linux Leak': 'swarming_gn_release_bot_x64', 520 'WebKit Linux Leak': 'swarming_gn_release_bot_x64',
521 'WebKit Linux MSAN': 'swarming_gn_msan_release_bot_x64', 521 'WebKit Linux MSAN': 'swarming_gn_msan_release_bot_x64',
522 'WebKit Linux Trusty': 'swarming_gn_release_bot_x64', 522 'WebKit Linux Trusty': 'swarming_gn_release_bot_x64',
523 'WebKit Linux': 'swarming_gn_release_bot_x64', 523 'WebKit Linux': 'swarming_gn_release_bot_x64',
524 'WebKit Mac Builder (dbg)': 'swarming_gyp_debug_bot', 524 'WebKit Mac Builder (dbg)': 'swarming_gyp_debug_bot',
525 'WebKit Mac Builder': 'swarming_gyp_release_bot_x64', 525 'WebKit Mac Builder': 'swarming_gyp_release_bot_x64',
526 'WebKit Mac10.10': 'none', 526 'WebKit Mac10.10': 'none',
527 'WebKit Mac10.11 (dbg)': 'none', 527 'WebKit Mac10.11 (dbg)': 'none',
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
1295 ], 1295 ],
1296 1296
1297 'gyp_official_x64': [ 1297 'gyp_official_x64': [
1298 'gyp', 'official', 'x64', 1298 'gyp', 'official', 'x64',
1299 ], 1299 ],
1300 1300
1301 'gyp_release_bot': [ 1301 'gyp_release_bot': [
1302 'gyp', 'release_bot', 1302 'gyp', 'release_bot',
1303 ], 1303 ],
1304 1304
1305 'gyp_release_bot_android': [
1306 'gyp', 'release_bot', 'android',
1307 ],
1308
1305 'gyp_release_bot_x86': [ 1309 'gyp_release_bot_x86': [
1306 'gyp', 'release_bot', 'x86', 1310 'gyp', 'release_bot', 'x86',
1307 ], 1311 ],
1308 1312
1309 'gyp_release_trybot': [ 1313 'gyp_release_trybot': [
1310 'gyp', 'release_trybot', 1314 'gyp', 'release_trybot',
1311 ], 1315 ],
1312 1316
1313 'gyp_release_trybot_x64': [ 1317 'gyp_release_trybot_x64': [
1314 'gyp', 'release_trybot', 'x64', 1318 'gyp', 'release_trybot', 'x64',
(...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after
2248 }, 2252 },
2249 2253
2250 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, 2254 'drfuzz': { 'gn_args': 'use_drfuzz=true' },
2251 2255
2252 'drmemory': { 2256 'drmemory': {
2253 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 2257 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
2254 'gyp_defines': 'component=shared_library build_for_tool=drmemory', 2258 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
2255 }, 2259 },
2256 }, 2260 },
2257 } 2261 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698