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

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

Issue 1923143004: [Android] Stop using goma on chromium.android:Android MIPS Builder (dbg) (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 20 matching lines...) Expand all
31 'Android Cronet Builder (dbg)': 'android_cronet_gn_debug_static_bot', 31 'Android Cronet Builder (dbg)': 'android_cronet_gn_debug_static_bot',
32 'Android Cronet Data Reduction Proxy Builder': 32 'Android Cronet Data Reduction Proxy Builder':
33 'android_cronet_data_reduction_proxy_gn_release_bot_minimal_symbols', 33 'android_cronet_data_reduction_proxy_gn_release_bot_minimal_symbols',
34 'Android Cronet MIPS Builder': 34 'Android Cronet MIPS Builder':
35 'android_cronet_gn_release_bot_minimal_symbols_mipsel', 35 'android_cronet_gn_release_bot_minimal_symbols_mipsel',
36 'Android Cronet x86 Builder': 36 'Android Cronet x86 Builder':
37 'android_cronet_gn_release_bot_minimal_symbols_x86', 37 'android_cronet_gn_release_bot_minimal_symbols_x86',
38 'Android Cronet x86 Builder (dbg)': 38 'Android Cronet x86 Builder (dbg)':
39 'android_cronet_gn_debug_static_bot_x86', 39 'android_cronet_gn_debug_static_bot_x86',
40 'Android GN Builder (dbg)': 'android_gn_debug_bot_minimal_symbols', 40 'Android GN Builder (dbg)': 'android_gn_debug_bot_minimal_symbols',
41 'Android MIPS Builder (dbg)': 'android_gn_debug_static_bot_mipsel', 41 'Android MIPS Builder (dbg)':
42 'android_gn_debug_static_minimal_symbols_mipsel',
42 'Android Swarm Builder': 43 'Android Swarm Builder':
43 'swarming_android_gn_release_bot_minimal_symbols', 44 'swarming_android_gn_release_bot_minimal_symbols',
44 'Android WebView CTS L-MR1 (dbg)': 'none', 45 'Android WebView CTS L-MR1 (dbg)': 'none',
45 'Android Webview L (dbg)': 'none', 46 'Android Webview L (dbg)': 'none',
46 'Android Webview M (dbg)': 'none', 47 'Android Webview M (dbg)': 'none',
47 'Android arm Builder (dbg)': 'android_gn_debug_static_bot', 48 'Android arm Builder (dbg)': 'android_gn_debug_static_bot',
48 'Android arm64 Builder (dbg)': 'android_gn_debug_static_bot_arm64', 49 'Android arm64 Builder (dbg)': 'android_gn_debug_static_bot_arm64',
49 'Android x64 Builder (dbg)': 'android_gn_debug_static_bot_x64', 50 'Android x64 Builder (dbg)': 'android_gn_debug_static_bot_x64',
50 'Android x86 Builder (dbg)': 'android_gn_debug_static_bot_x86', 51 'Android x86 Builder (dbg)': 'android_gn_debug_static_bot_x86',
51 'Jelly Bean Tester': 'android_gn_debug_static_bot', 52 'Jelly Bean Tester': 'android_gn_debug_static_bot',
(...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after
965 ], 966 ],
966 967
967 'android_gn_debug_static_bot': [ 968 'android_gn_debug_static_bot': [
968 'android', 'gn', 'debug_static_bot', 969 'android', 'gn', 'debug_static_bot',
969 ], 970 ],
970 971
971 'android_gn_debug_static_bot_arm64': [ 972 'android_gn_debug_static_bot_arm64': [
972 'android', 'gn', 'debug_static_bot', 'arm64', 973 'android', 'gn', 'debug_static_bot', 'arm64',
973 ], 974 ],
974 975
975 'android_gn_debug_static_bot_mipsel': [
976 'android', 'gn', 'debug_static_bot', 'mipsel',
977 ],
978
979 'android_gn_debug_static_bot_x64': [ 976 'android_gn_debug_static_bot_x64': [
980 'android', 'gn', 'debug_static_bot', 'x64', 977 'android', 'gn', 'debug_static_bot', 'x64',
981 ], 978 ],
982 979
983 'android_gn_debug_static_bot_x86': [ 980 'android_gn_debug_static_bot_x86': [
984 'android', 'gn', 'debug_static_bot', 'x86', 981 'android', 'gn', 'debug_static_bot', 'x86',
985 ], 982 ],
986 983
984 'android_gn_debug_static_minimal_symbols_mipsel': [
985 'android', 'gn', 'debug', 'static', 'minimal_symbols', 'mipsel',
986 ],
987
987 'android_gn_debug_trybot': [ 988 'android_gn_debug_trybot': [
988 'android', 'gn', 'debug_trybot', 989 'android', 'gn', 'debug_trybot',
989 ], 990 ],
990 991
991 'android_gn_debug_trybot_mipsel': [ 992 'android_gn_debug_trybot_mipsel': [
992 'android', 'gn', 'debug_trybot', 'mipsel', 993 'android', 'gn', 'debug_trybot', 'mipsel',
993 ], 994 ],
994 995
995 'android_gn_debug_trybot_x64': [ 996 'android_gn_debug_trybot_x64': [
996 'android', 'gn', 'debug_trybot', 'x64', 997 'android', 'gn', 'debug_trybot', 'x64',
(...skipping 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after
2350 }, 2351 },
2351 2352
2352 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, 2353 'drfuzz': { 'gn_args': 'use_drfuzz=true' },
2353 2354
2354 'drmemory': { 2355 'drmemory': {
2355 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 2356 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
2356 'gyp_defines': 'component=shared_library build_for_tool=drmemory', 2357 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
2357 }, 2358 },
2358 }, 2359 },
2359 } 2360 }
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