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

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

Issue 1626663002: Switched Cast builder to use GN. (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_release_bot': ['android', 'gn', 'release_bot'], 15 'android_gn_release_bot': ['android', 'gn', 'release_bot'],
16 'android_gn_release_trybot': ['android', 'gn', 'release_trybot'], 16 'android_gn_release_trybot': ['android', 'gn', 'release_trybot'],
17 'android_gyp_debug_static_bot': ['android', 'gyp', 'debug_static_bot'], 17 'android_gyp_debug_static_bot': ['android', 'gyp', 'debug_static_bot'],
18 'android_gyp_debug_static_bot_arm64': ['android', 'gyp', 'debug_static_bot', 'arm64'], 18 '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'], 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'], 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'], 21 'android_gyp_debug_static_bot_x86': ['android', 'gyp', 'debug_static_bot', ' x86'],
22 'android_gyp_release_bot': ['android', 'gyp', 'release_bot'], 22 'android_gyp_release_bot': ['android', 'gyp', 'release_bot'],
23 'android_gyp_release_bot_minimal_symbols': ['android', 'gyp', 'release_bot', 'minimal_symbols'], 23 'android_gyp_release_bot_minimal_symbols': ['android', 'gyp', 'release_bot', 'minimal_symbols'],
24 'cast_gyp_release_bot': ['cast', 'gyp', 'release_bot'], 24 'cast_gn_release_bot': ['cast', 'gn', 'release_bot'],
25 'cast_gyp_release_trybot': ['cast', 'gyp', 'release_trybot'], 25 'cast_gn_release_trybot': ['cast', 'gn', 'release_trybot'],
26 'chromeos_gn_debug_bot': ['chromeos', 'gn', 'debug_bot'], 26 'chromeos_gn_debug_bot': ['chromeos', 'gn', 'debug_bot'],
27 'chromeos_ozone_gn_release_bot': ['chromeos', 'ozone', 'gn', 'release_bot'], 27 'chromeos_ozone_gn_release_bot': ['chromeos', 'ozone', 'gn', 'release_bot'],
28 'chromeos_ozone_gn_release_trybot': ['chromeos', 'ozone', 'gn', 'release_try bot'], 28 'chromeos_ozone_gn_release_trybot': ['chromeos', 'ozone', 'gn', 'release_try bot'],
29 'dev_gn_debug': ['gn', 'debug', 'shared', 'full_symbols'], 29 'dev_gn_debug': ['gn', 'debug', 'shared', 'full_symbols'],
30 'dev_gn_release': ['gn', 'release', 'shared'], 30 'dev_gn_release': ['gn', 'release', 'shared'],
31 'dev_gyp_debug': ['gyp', 'debug', 'shared', 'full_symbols'], 31 'dev_gyp_debug': ['gyp', 'debug', 'shared', 'full_symbols'],
32 'dev_gyp_release': ['gyp', 'release', 'shared'], 32 'dev_gyp_release': ['gyp', 'release', 'shared'],
33 'embedded_gyp_debug_bot': ['embedded', 'gyp', 'debug_bot'], 33 'embedded_gyp_debug_bot': ['embedded', 'gyp', 'debug_bot'],
34 34
35 # This is the "deployment" config for the blimp builds. Currently 35 # This is the "deployment" config for the blimp builds. Currently
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'gn_args': 'target_cpu="arm64"', 182 'gn_args': 'target_cpu="arm64"',
183 'gyp_defines': 'target_arch=arm64', 183 'gyp_defines': 'target_arch=arm64',
184 }, 184 },
185 185
186 'asan': { 186 'asan': {
187 'gn_args': 'is_asan=true', 187 'gn_args': 'is_asan=true',
188 'gyp_defines': 'asan=1', 188 'gyp_defines': 'asan=1',
189 }, 189 },
190 190
191 'cast': { 191 'cast': {
192 'gn_args': '# TODO: Need the GN equivalents for a Chromecast build.', 192 'gn_args': 'is_chromecast=true',
193 'gyp_defines': 'chromecast=1', 193 'gyp_defines': 'chromecast=1',
194 }, 194 },
195 195
196 'cfi': { 196 'cfi': {
197 'gn_args': 'is_cfi=true', 197 'gn_args': 'is_cfi=true',
198 'gyp_defines': 'cfi_vptr=1', 198 'gyp_defines': 'cfi_vptr=1',
199 }, 199 },
200 200
201 'chromeos': { 201 'chromeos': {
202 'gn_args': 'target_os="chromeos"', 202 'gn_args': 'target_os="chromeos"',
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 'chromium.linux': { 459 'chromium.linux': {
460 'Linux Builder': 'swarming_gn_release_bot', 460 'Linux Builder': 'swarming_gn_release_bot',
461 'Linux Tests': 'none', 461 'Linux Tests': 'none',
462 'Linux Builder (dbg)(32)': 'swarming_gyp_debug_bot_no_symbols_x86', 462 'Linux Builder (dbg)(32)': 'swarming_gyp_debug_bot_no_symbols_x86',
463 'Linux Tests (dbg)(1)(32)': 'none', 463 'Linux Tests (dbg)(1)(32)': 'none',
464 'Linux Builder (dbg)': 'swarming_gn_debug_bot', 464 'Linux Builder (dbg)': 'swarming_gn_debug_bot',
465 'Linux Tests (dbg)(1)': 'none', 465 'Linux Tests (dbg)(1)': 'none',
466 'Linux GN': 'gn_release_bot', 466 'Linux GN': 'gn_release_bot',
467 'Linux GN Clobber': 'gn_release_bot', 467 'Linux GN Clobber': 'gn_release_bot',
468 'Linux GN (dbg)': 'gn_debug_bot', 468 'Linux GN (dbg)': 'gn_debug_bot',
469 'Cast Linux': 'cast_gyp_release_bot', 469 'Cast Linux': 'cast_gn_release_bot',
470 'Android Arm64 Builder (dbg)': 'android_gyp_debug_static_bot_arm64', 470 'Android Arm64 Builder (dbg)': 'android_gyp_debug_static_bot_arm64',
471 'Android Builder (dbg)': 'android_gyp_debug_static_bot', 471 'Android Builder (dbg)': 'android_gyp_debug_static_bot',
472 'Android Tests (dbg)': 'android_gyp_debug_static_bot', 472 'Android Tests (dbg)': 'android_gyp_debug_static_bot',
473 'Android Builder': 'android_gyp_release_bot', 473 'Android Builder': 'android_gyp_release_bot',
474 'Android Tests': 'android_gyp_release_bot', 474 'Android Tests': 'android_gyp_release_bot',
475 'Android Clang Builder (dbg)': 'android_clang_asan_gyp_debug_bot', 475 'Android Clang Builder (dbg)': 'android_clang_asan_gyp_debug_bot',
476 'Android GN': 'android_gn_release_bot', 476 'Android GN': 'android_gn_release_bot',
477 'Android GN (dbg)': 'android_gn_debug_bot', 477 'Android GN (dbg)': 'android_gn_debug_bot',
478 'Cast Android (dbg)': 'android_cast_gyp_debug_static_bot', 478 'Cast Android (dbg)': 'android_cast_gyp_debug_static_bot',
479 }, 479 },
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 'linux_chromium_gn_chromeos_dbg': 'chromeos_gn_debug_bot', 635 'linux_chromium_gn_chromeos_dbg': 'chromeos_gn_debug_bot',
636 'linux_chromium_msan_rel_ng': 'swarming_msan_gyp_release_trybot', 636 'linux_chromium_msan_rel_ng': 'swarming_msan_gyp_release_trybot',
637 'linux_chromium_tsan_rel_ng': 'swarming_tsan_gyp_release_trybot', 637 'linux_chromium_tsan_rel_ng': 'swarming_tsan_gyp_release_trybot',
638 'linux_chromium_practice_rel_ng': 'gyp_release_trybot', 638 'linux_chromium_practice_rel_ng': 'gyp_release_trybot',
639 'linux_arm': 'swarming_gyp_release_trybot_arm', 639 'linux_arm': 'swarming_gyp_release_trybot_arm',
640 'linux_chromium_compile_dbg_32_ng': 'swarming_gyp_debug_trybot_x86', 640 'linux_chromium_compile_dbg_32_ng': 'swarming_gyp_debug_trybot_x86',
641 'linux_chromium_dbg_32_ng': 'swarming_gyp_debug_trybot_x86', 641 'linux_chromium_dbg_32_ng': 'swarming_gyp_debug_trybot_x86',
642 'linux_chromium_archive_rel_ng': 'noswarming_gn_release_bot', 642 'linux_chromium_archive_rel_ng': 'noswarming_gn_release_bot',
643 'linux_chromium_clobber_rel_ng': 'gyp_release_trybot', 643 'linux_chromium_clobber_rel_ng': 'gyp_release_trybot',
644 'linux_chromium_gn_upload': 'gn_linux_upload', 644 'linux_chromium_gn_upload': 'gn_linux_upload',
645 'cast_shell_linux': 'cast_gyp_release_trybot', 645 'cast_shell_linux': 'cast_gn_release_trybot',
646 'linux_deterministic': 'swarming_deterministic_gyp_release_bot', 646 'linux_deterministic': 'swarming_deterministic_gyp_release_bot',
647 'linux_ecs_ozone': 'embedded_gyp_debug_bot', 647 'linux_ecs_ozone': 'embedded_gyp_debug_bot',
648 }, 648 },
649 'tryserver.chromium.mac': { 649 'tryserver.chromium.mac': {
650 'mac_chromium_gn_dbg': 'gn_debug_static_bot', 650 'mac_chromium_gn_dbg': 'gn_debug_static_bot',
651 'mac_chromium_gn_rel': 'gn_release_trybot', 651 'mac_chromium_gn_rel': 'gn_release_trybot',
652 'mac_chromium_gn_upload': 'gn_release_bot', 652 'mac_chromium_gn_upload': 'gn_release_bot',
653 }, 653 },
654 'tryserver.chromium.perf': { 654 'tryserver.chromium.perf': {
655 'android_perf_bisect_builder': 'gyp_official_goma_minimal_symbols_android' , 655 'android_perf_bisect_builder': 'gyp_official_goma_minimal_symbols_android' ,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 'win8_chromium_gn_upload': 'gn_release_bot_minimal_symbols_x86', 689 'win8_chromium_gn_upload': 'gn_release_bot_minimal_symbols_x86',
690 'win_clang_x64_dbg': 'win_clang_debug_bot', 690 'win_clang_x64_dbg': 'win_clang_debug_bot',
691 }, 691 },
692 'tryserver.v8': { 692 'tryserver.v8': {
693 'v8_linux_chromium_gn_rel': 'gn_release_trybot', 693 'v8_linux_chromium_gn_rel': 'gn_release_trybot',
694 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot', 694 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot',
695 'v8_linux_blink_rel': 'swarming_gn_release_trybot_minimal_symbols_x64', 695 'v8_linux_blink_rel': 'swarming_gn_release_trybot_minimal_symbols_x64',
696 }, 696 },
697 }, 697 },
698 } 698 }
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