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

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

Issue 1925533004: Switch Android Builder on chromium.webkit to gn. (RELAND) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 'swarming_gpu_tests_gyp_release_trybot_minimal_symbols_x86', 516 'swarming_gpu_tests_gyp_release_trybot_minimal_symbols_x86',
517 }, 517 },
518 518
519 'client.v8.fyi': { 519 'client.v8.fyi': {
520 'Linux Debug Builder': 'gn_debug_bot', 520 'Linux Debug Builder': 'gn_debug_bot',
521 'V8 Android GN (dbg)': 'android_gn_debug_bot', 521 'V8 Android GN (dbg)': 'android_gn_debug_bot',
522 'V8 Linux GN': 'gn_release_bot', 522 'V8 Linux GN': 'gn_release_bot',
523 }, 523 },
524 524
525 'chromium.webkit': { 525 'chromium.webkit': {
526 'Android Builder': 'gyp_release_bot_android', 526 'Android Builder': 'android_gn_release_bot_minimal_symbols',
527 'WebKit Android (Nexus4)': 'gyp_release_bot_android', 527 'WebKit Android (Nexus4)': 'none',
528 'WebKit Linux (dbg)': 'swarming_gn_debug_bot_x64', 528 'WebKit Linux (dbg)': 'swarming_gn_debug_bot_x64',
529 'WebKit Linux ASAN': 'swarming_gn_asan_lsan_release_bot_x64', 529 'WebKit Linux ASAN': 'swarming_gn_asan_lsan_release_bot_x64',
530 'WebKit Linux Leak': 'swarming_gn_release_bot_x64', 530 'WebKit Linux Leak': 'swarming_gn_release_bot_x64',
531 'WebKit Linux MSAN': 'swarming_gn_msan_release_bot_x64', 531 'WebKit Linux MSAN': 'swarming_gn_msan_release_bot_x64',
532 'WebKit Linux Trusty': 'swarming_gn_release_bot_x64', 532 'WebKit Linux Trusty': 'swarming_gn_release_bot_x64',
533 'WebKit Linux': 'swarming_gn_release_bot_x64', 533 'WebKit Linux': 'swarming_gn_release_bot_x64',
534 'WebKit Mac Builder (dbg)': 'swarming_gyp_debug_bot', 534 'WebKit Mac Builder (dbg)': 'swarming_gyp_debug_bot',
535 'WebKit Mac Builder': 'swarming_gyp_release_bot_x64', 535 'WebKit Mac Builder': 'swarming_gyp_release_bot_x64',
536 'WebKit Mac10.10': 'none', 536 'WebKit Mac10.10': 'none',
537 'WebKit Mac10.11 (dbg)': 'none', 537 'WebKit Mac10.11 (dbg)': 'none',
(...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after
1316 ], 1316 ],
1317 1317
1318 'gyp_official_x64': [ 1318 'gyp_official_x64': [
1319 'gyp', 'official', 'x64', 1319 'gyp', 'official', 'x64',
1320 ], 1320 ],
1321 1321
1322 'gyp_release_bot': [ 1322 'gyp_release_bot': [
1323 'gyp', 'release_bot', 1323 'gyp', 'release_bot',
1324 ], 1324 ],
1325 1325
1326 'gyp_release_bot_android': [
1327 'gyp', 'release_bot', 'android',
1328 ],
1329
1330 'gyp_release_bot_x86': [ 1326 'gyp_release_bot_x86': [
1331 'gyp', 'release_bot', 'x86', 1327 'gyp', 'release_bot', 'x86',
1332 ], 1328 ],
1333 1329
1334 'gyp_release_trybot': [ 1330 'gyp_release_trybot': [
1335 'gyp', 'release_trybot', 1331 'gyp', 'release_trybot',
1336 ], 1332 ],
1337 1333
1338 'gyp_release_trybot_x64': [ 1334 'gyp_release_trybot_x64': [
1339 'gyp', 'release_trybot', 'x64', 1335 'gyp', 'release_trybot', 'x64',
(...skipping 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after
2350 }, 2346 },
2351 2347
2352 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, 2348 'drfuzz': { 'gn_args': 'use_drfuzz=true' },
2353 2349
2354 'drmemory': { 2350 'drmemory': {
2355 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 2351 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
2356 'gyp_defines': 'component=shared_library build_for_tool=drmemory', 2352 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
2357 }, 2353 },
2358 }, 2354 },
2359 } 2355 }
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