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

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

Issue 2581933002: Add mb configs for ClangToTAndroid, ClangToTAndroid64 bots (Closed)
Patch Set: Created 4 years 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 'chromeos.chrome': { 10 'chromeos.chrome': {
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 'CrWinClang': 'clang_official_release_bot_minimal_symbols_x86', 123 'CrWinClang': 'clang_official_release_bot_minimal_symbols_x86',
124 124
125 'CrWinClang(dbg)': 'clang_debug_bot_minimal_symbols_x86', 125 'CrWinClang(dbg)': 'clang_debug_bot_minimal_symbols_x86',
126 'CrWinClang64': 'clang_official_release_bot_minimal_symbols', 126 'CrWinClang64': 'clang_official_release_bot_minimal_symbols',
127 'CrWinClang64(dll)': 'clang_shared_release_bot', 127 'CrWinClang64(dll)': 'clang_shared_release_bot',
128 'CrWinClangGoma': 'clang_official_optimize_release_bot_minimal_symbols_x86 ', 128 'CrWinClangGoma': 'clang_official_optimize_release_bot_minimal_symbols_x86 ',
129 'CrWinGoma': 'release_bot_x86', 129 'CrWinGoma': 'release_bot_x86',
130 'CrWinGoma(dll)': 'shared_release_bot_x86', 130 'CrWinGoma(dll)': 'shared_release_bot_x86',
131 'ClangToTAndroidASan': 'android_clang_tot_asan', 131 'ClangToTAndroidASan': 'android_clang_tot_asan',
132 'ClangToTAndroid (dbg)': 'android_clang_tot_dbg', 132 'ClangToTAndroid (dbg)': 'android_clang_tot_dbg',
133 'ClangToTAndroid': 'android_clang_tot_release',
134 'ClangToTAndroid64': 'android_clang_tot_release_arm64',
133 'ClangToTAndroid x64': 'android_clang_tot_x64', 135 'ClangToTAndroid x64': 'android_clang_tot_x64',
134 'ClangToTLinux': 'clang_tot_linux_full_symbols_shared_release', 136 'ClangToTLinux': 'clang_tot_linux_full_symbols_shared_release',
135 'ClangToTLinux (dbg)': 'clang_tot_shared_debug', 137 'ClangToTLinux (dbg)': 'clang_tot_shared_debug',
136 'ClangToTLinuxASan': 'clang_tot_asan_lsan_static_release', 138 'ClangToTLinuxASan': 'clang_tot_asan_lsan_static_release',
137 'ClangToTLinuxASanLibfuzzer': 'release_libfuzzer_asan_clang_tot', 139 'ClangToTLinuxASanLibfuzzer': 'release_libfuzzer_asan_clang_tot',
138 'ClangToTLinuxLLD': 'clang_tot_lld_release_shared', 140 'ClangToTLinuxLLD': 'clang_tot_lld_release_shared',
139 'ClangToTLinuxUBSanVptr': 'clang_tot_edge_ubsan_no_recover_hack_static_rel ease', 141 'ClangToTLinuxUBSanVptr': 'clang_tot_edge_ubsan_no_recover_hack_static_rel ease',
140 'ClangToTMac': 'clang_tot_minimal_symbols_shared_release', 142 'ClangToTMac': 'clang_tot_minimal_symbols_shared_release',
141 'ClangToTMac (dbg)': 'clang_tot_minimal_symbols_shared_debug', 143 'ClangToTMac (dbg)': 'clang_tot_minimal_symbols_shared_debug',
142 'ClangToTMacASan': 'asan_disable_nacl_clang_tot_full_symbols_static_releas e', 144 'ClangToTMacASan': 'asan_disable_nacl_clang_tot_full_symbols_static_releas e',
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 ], 688 ],
687 689
688 'android_clang_tot_asan': [ 690 'android_clang_tot_asan': [
689 'android_without_codecs', 'clang_tot', 'asan', 'shared', 'debug', 'minimal _symbols', 691 'android_without_codecs', 'clang_tot', 'asan', 'shared', 'debug', 'minimal _symbols',
690 ], 692 ],
691 693
692 'android_clang_tot_dbg': [ 694 'android_clang_tot_dbg': [
693 'android_without_codecs', 'clang_tot', 'shared', 'debug', 695 'android_without_codecs', 'clang_tot', 'shared', 'debug',
694 ], 696 ],
695 697
698 'android_clang_tot_release': [
699 'android_without_codecs', 'clang_tot', 'release',
700 ],
701
702 'android_clang_tot_release_arm64': [
703 'android_without_codecs', 'clang_tot', 'release', 'arm64',
704 ],
705
696 'android_clang_tot_x64': [ 706 'android_clang_tot_x64': [
697 'android_without_codecs', 'clang_tot', 'shared', 'x64', 'release', 707 'android_without_codecs', 'clang_tot', 'shared', 'x64', 'release',
698 'dcheck_always_on', 708 'dcheck_always_on',
699 ], 709 ],
700 710
701 'android_cronet_data_reduction_proxy_release_bot_minimal_symbols_arm_no_neon ': [ 711 'android_cronet_data_reduction_proxy_release_bot_minimal_symbols_arm_no_neon ': [
702 'android', 'cronet', 'data_reduction_proxy', 'release_bot', 'minimal_symbo ls', 'arm_no_neon', 712 'android', 'cronet', 'data_reduction_proxy', 'release_bot', 'minimal_symbo ls', 'arm_no_neon',
703 ], 713 ],
704 714
705 'android_cronet_debug_static_bot_arm64': [ 715 'android_cronet_debug_static_bot_arm64': [
(...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after
1823 1833
1824 'x64': { 1834 'x64': {
1825 'gn_args': 'target_cpu="x64"', 1835 'gn_args': 'target_cpu="x64"',
1826 }, 1836 },
1827 1837
1828 'x86': { 1838 'x86': {
1829 'gn_args': 'target_cpu="x86"', 1839 'gn_args': 'target_cpu="x86"',
1830 }, 1840 },
1831 }, 1841 },
1832 } 1842 }
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