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

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

Issue 1639333003: [Android] Switch chromium bots on chromium.android to gn. (RELAND) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 the list of configs that you can pass to mb; each config 6 # This is the list of configs that you can pass to mb; each config
7 # represents a particular combination of GYP_DEFINES/gn args that 7 # represents a particular combination of GYP_DEFINES/gn args that
8 # we must support. A given config *may* be platform-specific but 8 # we must support. A given config *may* be platform-specific but
9 # is not necessarily so (i.e., we might have mac, win, and linux 9 # is not necessarily so (i.e., we might have mac, win, and linux
10 # bots all using the 'gn_release_bot' config). 10 # bots all using the 'gn_release_bot' config).
11 'configs': { 11 'configs': {
12 'android_cast_gyp_debug_static_bot': ['android', 'cast', 'gyp', 'debug_stati c_bot'], 12 'android_cast_gyp_debug_static_bot': ['android', 'cast', 'gyp', 'debug_stati c_bot'],
13 'android_clang_asan_gyp_debug_bot': ['android', 'clang', 'asan', 'gyp', 'deb ug_bot'],\ 13 'android_clang_asan_gyp_debug_bot': ['android', 'clang', 'asan', 'gyp', 'deb ug_bot'],\
14 'android_gn_debug_bot': ['android', 'gn', 'debug_bot'], 14 'android_gn_debug_bot': ['android', 'gn', 'debug_bot'],
15 'android_gn_debug_static_bot': ['android', 'gn', 'debug_static_bot'],
16 'android_gn_debug_static_bot_arm64': ['android', 'gn', 'debug_static_bot', ' arm64'],
17 'android_gn_debug_static_bot_mipsel': ['android', 'gn', 'debug_static_bot', 'mipsel'],
18 'android_gn_debug_static_bot_x64': ['android', 'gn', 'debug_static_bot', 'x6 4'],
19 'android_gn_debug_static_bot_x86': ['android', 'gn', 'debug_static_bot', 'x8 6'],
15 'android_gn_release_bot': ['android', 'gn', 'release_bot'], 20 'android_gn_release_bot': ['android', 'gn', 'release_bot'],
16 'android_gn_release_trybot': ['android', 'gn', 'release_trybot'], 21 'android_gn_release_trybot': ['android', 'gn', 'release_trybot'],
17 'android_gyp_debug_static_bot': ['android', 'gyp', 'debug_static_bot'], 22 'android_gyp_debug_static_bot': ['android', 'gyp', 'debug_static_bot'],
18 'android_gyp_debug_static_bot_arm64': ['android', 'gyp', 'debug_static_bot', 'arm64'], 23 'android_gyp_debug_static_bot_arm64': ['android', 'gyp', 'debug_static_bot', 'arm64'],
19 'android_gyp_debug_static_bot_mipsel': ['android', 'gyp', 'debug_static_bot' , 'mipsel'],
20 'android_gyp_debug_static_bot_x64': ['android', 'gyp', 'debug_static_bot', ' x64'],
21 'android_gyp_debug_static_bot_x86': ['android', 'gyp', 'debug_static_bot', ' x86'],
22 'android_gyp_release_bot': ['android', 'gyp', 'release_bot'], 24 'android_gyp_release_bot': ['android', 'gyp', 'release_bot'],
23 'android_gyp_release_bot_minimal_symbols': ['android', 'gyp', 'release_bot', 'minimal_symbols'], 25 'android_gyp_release_bot_minimal_symbols': ['android', 'gyp', 'release_bot', 'minimal_symbols'],
24 'cast_gn_release_bot': ['cast', 'gn', 'release_bot'], 26 'cast_gn_release_bot': ['cast', 'gn', 'release_bot'],
25 'cast_gn_release_trybot': ['cast', 'gn', 'release_trybot'], 27 'cast_gn_release_trybot': ['cast', 'gn', 'release_trybot'],
26 'chromeos_gn_debug_bot': ['chromeos', 'gn', 'debug_bot'], 28 'chromeos_gn_debug_bot': ['chromeos', 'gn', 'debug_bot'],
27 'chromeos_ozone_gn_release_bot': ['chromeos', 'ozone', 'gn', 'release_bot'], 29 'chromeos_ozone_gn_release_bot': ['chromeos', 'ozone', 'gn', 'release_bot'],
28 'chromeos_ozone_gn_release_trybot': ['chromeos', 'ozone', 'gn', 'release_try bot'], 30 'chromeos_ozone_gn_release_trybot': ['chromeos', 'ozone', 'gn', 'release_try bot'],
29 'dev_gn_debug': ['gn', 'debug', 'shared', 'full_symbols'], 31 'dev_gn_debug': ['gn', 'debug', 'shared', 'full_symbols'],
30 'dev_gn_release': ['gn', 'release', 'shared'], 32 'dev_gn_release': ['gn', 'release', 'shared'],
31 'dev_gyp_debug': ['gyp', 'debug', 'shared', 'full_symbols'], 33 'dev_gyp_debug': ['gyp', 'debug', 'shared', 'full_symbols'],
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 75
74 # This is just for completeness; any bot that uses this config 76 # This is just for completeness; any bot that uses this config
75 # should never actually run MB. 77 # should never actually run MB.
76 'none': ['none'], 78 'none': ['none'],
77 79
78 'noswarming_gn_release_bot': ['noswarming', 'gn', 'release_bot'], 80 'noswarming_gn_release_bot': ['noswarming', 'gn', 'release_bot'],
79 'noswarming_gyp_release_bot': ['noswarming', 'gyp', 'release_bot'], 81 'noswarming_gyp_release_bot': ['noswarming', 'gyp', 'release_bot'],
80 'noswarming_gyp_release_bot_mac_strip': ['noswarming', 'gyp', 'release_bot', 'mac_strip'], 82 'noswarming_gyp_release_bot_mac_strip': ['noswarming', 'gyp', 'release_bot', 'mac_strip'],
81 'noswarming_gyp_release_bot_x86': ['noswarming', 'gyp', 'release_bot', 'x86' ], 83 'noswarming_gyp_release_bot_x86': ['noswarming', 'gyp', 'release_bot', 'x86' ],
82 84
83 'swarming_android_gyp_release_bot_minimal_symbols': ['swarming', 'android', 'gyp', 'release_bot', 'minimal_symbols'], 85 'swarming_android_gn_release_bot_minimal_symbols': ['swarming', 'android', ' gn', 'release_bot', 'minimal_symbols'],
84 'swarming_asan_lsan_gyp_release_trybot': ['swarming', 'asan', 'lsan', 'relea se_trybot'], 86 'swarming_asan_lsan_gyp_release_trybot': ['swarming', 'asan', 'lsan', 'relea se_trybot'],
85 'swarming_msan_gyp_release_trybot': ['swarming', 'chromeos', 'msan', 'gyp', 'release_trybot'], 87 'swarming_msan_gyp_release_trybot': ['swarming', 'chromeos', 'msan', 'gyp', 'release_trybot'],
86 'swarming_deterministic_gyp_release_bot': ['swarming', 'deterministic', 'gyp ', 'release_bot'], 88 'swarming_deterministic_gyp_release_bot': ['swarming', 'deterministic', 'gyp ', 'release_bot'],
87 'swarming_gpu_fyi_tests_gn_debug_bot': ['swarming', 'gpu_tests', 'internal_g les2_conform_tests', 'gn', 'debug_bot'], 89 'swarming_gpu_fyi_tests_gn_debug_bot': ['swarming', 'gpu_tests', 'internal_g les2_conform_tests', 'gn', 'debug_bot'],
88 'swarming_gpu_fyi_tests_gn_release_bot': ['swarming', 'gpu_tests', 'internal _gles2_conform_tests', 'gn', 'release_bot'], 90 'swarming_gpu_fyi_tests_gn_release_bot': ['swarming', 'gpu_tests', 'internal _gles2_conform_tests', 'gn', 'release_bot'],
89 'swarming_gpu_tests_gn_release_trybot': ['swarming', 'gpu_tests', 'gn', 'rel ease_trybot'], 91 'swarming_gpu_tests_gn_release_trybot': ['swarming', 'gpu_tests', 'gn', 'rel ease_trybot'],
90 'swarming_gpu_tests_gyp_debug_trybot': ['swarming', 'gpu_tests', 'gyp', 'deb ug_trybot'], 92 'swarming_gpu_tests_gyp_debug_trybot': ['swarming', 'gpu_tests', 'gyp', 'deb ug_trybot'],
91 'swarming_gpu_tests_gyp_release_trybot': ['swarming', 'gpu_tests', 'gyp', 'r elease_trybot'], 93 'swarming_gpu_tests_gyp_release_trybot': ['swarming', 'gpu_tests', 'gyp', 'r elease_trybot'],
92 'swarming_gn_debug_bot': ['swarming', 'gn', 'debug_bot'], 94 'swarming_gn_debug_bot': ['swarming', 'gn', 'debug_bot'],
93 'swarming_gn_debug_bot_minimal_symbols_x64': ['swarming', 'gn', 'debug_bot_m inimal_symbols', 'x64'], 95 'swarming_gn_debug_bot_minimal_symbols_x64': ['swarming', 'gn', 'debug_bot_m inimal_symbols', 'x64'],
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 }, 425 },
424 'chromium': { 426 'chromium': {
425 'Win': 'noswarming_gyp_release_bot', 427 'Win': 'noswarming_gyp_release_bot',
426 'Mac': 'noswarming_gyp_release_bot_mac_strip', 428 'Mac': 'noswarming_gyp_release_bot_mac_strip',
427 'Linux x64': 'noswarming_gn_release_bot', 429 'Linux x64': 'noswarming_gn_release_bot',
428 'Linux': 'noswarming_gyp_release_bot_x86', 430 'Linux': 'noswarming_gyp_release_bot_x86',
429 'Android': 'android_gyp_release_bot_minimal_symbols', 431 'Android': 'android_gyp_release_bot_minimal_symbols',
430 }, 432 },
431 'chromium.android': { 433 'chromium.android': {
432 'Android GN Builder (dbg)': 'android_gn_debug_bot', 434 'Android GN Builder (dbg)': 'android_gn_debug_bot',
433 'Android MIPS Builder (dbg)': 'android_gyp_debug_static_bot_mipsel', 435 'Android MIPS Builder (dbg)': 'android_gn_debug_static_bot_mipsel',
434 'Android arm Builder (dbg)': 'android_gyp_debug_static_bot', 436 'Android arm Builder (dbg)': 'android_gn_debug_static_bot',
435 'Android arm64 Builder (dbg)': 'android_gyp_debug_static_bot_arm64', 437 'Android arm64 Builder (dbg)': 'android_gn_debug_static_bot_arm64',
436 'Android x64 Builder (dbg)': 'android_gyp_debug_static_bot_x64', 438 'Android x64 Builder (dbg)': 'android_gn_debug_static_bot_x64',
437 'Android x86 Builder (dbg)': 'android_gyp_debug_static_bot_x86', 439 'Android x86 Builder (dbg)': 'android_gn_debug_static_bot_x86',
438 'Jelly Bean Tester': 'android_gyp_debug_static_bot', 440 'Jelly Bean Tester': 'android_gn_debug_static_bot',
439 'KitKat Tablet Tester': 'android_gyp_debug_static_bot', 441 'KitKat Tablet Tester': 'android_gn_debug_static_bot',
440 'Lollipop Consumer Tester': 'android_gyp_debug_static_bot_arm64', 442 'Lollipop Consumer Tester': 'android_gn_debug_static_bot_arm64',
441 'Lollipop Low-end Tester': 'android_gyp_debug_static_bot', 443 'Lollipop Low-end Tester': 'android_gn_debug_static_bot',
442 'Lollipop Phone Tester': 'android_gyp_debug_static_bot', 444 'Lollipop Phone Tester': 'android_gn_debug_static_bot',
443 'Lollipop Tablet Tester': 'android_gyp_debug_static_bot', 445 'Lollipop Tablet Tester': 'android_gn_debug_static_bot',
444 'Marshmallow 64 bit Tester': 'android_gyp_debug_static_bot_arm64', 446 'Marshmallow 64 bit Tester': 'android_gn_debug_static_bot_arm64',
445 'Marshmallow Tablet Tester': 'android_gyp_debug_static_bot', 447 'Marshmallow Tablet Tester': 'android_gn_debug_static_bot',
446 'Android Swarm Builder': 'swarming_android_gyp_release_bot_minimal_symbols ', 448 'Android Swarm Builder': 'swarming_android_gn_release_bot_minimal_symbols' ,
447 }, 449 },
448 'chromium.chrome': { 450 'chromium.chrome': {
449 'Google Chrome Win': 'gyp_official_goma_minimal_symbols_x86', 451 'Google Chrome Win': 'gyp_official_goma_minimal_symbols_x86',
450 'Google Chrome Linux': 'gyp_official_goma_x86', 452 'Google Chrome Linux': 'gyp_official_goma_x86',
451 'Google Chrome Linux x64': 'gn_official_goma', 453 'Google Chrome Linux x64': 'gn_official_goma',
452 'Google Chrome Mac': 'gyp_official_goma', 454 'Google Chrome Mac': 'gyp_official_goma',
453 'Google Chrome ChromeOS': 'gyp_official_goma_chromeos', 455 'Google Chrome ChromeOS': 'gyp_official_goma_chromeos',
454 }, 456 },
455 'chromium.chromiumos': { 457 'chromium.chromiumos': {
456 'Linux ChromiumOS GN': 'chromeos_ozone_gn_release_bot', 458 'Linux ChromiumOS GN': 'chromeos_ozone_gn_release_bot',
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 'win8_chromium_gn_upload': 'gn_release_bot_minimal_symbols_x86', 691 'win8_chromium_gn_upload': 'gn_release_bot_minimal_symbols_x86',
690 'win_clang_x64_dbg': 'win_clang_debug_bot', 692 'win_clang_x64_dbg': 'win_clang_debug_bot',
691 }, 693 },
692 'tryserver.v8': { 694 'tryserver.v8': {
693 'v8_linux_chromium_gn_rel': 'gn_release_trybot', 695 'v8_linux_chromium_gn_rel': 'gn_release_trybot',
694 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot', 696 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot',
695 'v8_linux_blink_rel': 'swarming_gn_release_trybot_minimal_symbols_x64', 697 'v8_linux_blink_rel': 'swarming_gn_release_trybot_minimal_symbols_x64',
696 }, 698 },
697 }, 699 },
698 } 700 }
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