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

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

Issue 2556033002: Add GPU FYI Linux Ozone builder. (Closed)
Patch Set: Add GPU FYI Linux Ozone builder. 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
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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 'GPU Linux Builder (dbg)': 'gpu_fyi_tests_debug_trybot', 226 'GPU Linux Builder (dbg)': 'gpu_fyi_tests_debug_trybot',
227 'GPU Linux Builder': 'gpu_fyi_tests_release_trybot', 227 'GPU Linux Builder': 'gpu_fyi_tests_release_trybot',
228 'GPU Mac Builder': 'gpu_fyi_tests_release_trybot', 228 'GPU Mac Builder': 'gpu_fyi_tests_release_trybot',
229 'GPU Mac Builder (dbg)': 'gpu_fyi_tests_debug_trybot', 229 'GPU Mac Builder (dbg)': 'gpu_fyi_tests_debug_trybot',
230 'GPU Win Builder': 'gpu_tests_deqp_gles_release_trybot_x86', 230 'GPU Win Builder': 'gpu_tests_deqp_gles_release_trybot_x86',
231 'GPU Win Builder (dbg)': 'gpu_tests_deqp_gles_debug_trybot_x86', 231 'GPU Win Builder (dbg)': 'gpu_tests_deqp_gles_debug_trybot_x86',
232 'GPU Win Clang Builder (dbg)': 'gpu_fyi_tests_win_clang_debug_bot', 232 'GPU Win Clang Builder (dbg)': 'gpu_fyi_tests_win_clang_debug_bot',
233 'GPU Win x64 Builder': 'gpu_tests_deqp_gles_release_trybot', 233 'GPU Win x64 Builder': 'gpu_tests_deqp_gles_release_trybot',
234 'GPU Win x64 Builder (dbg)': 'gpu_tests_deqp_gles_debug_trybot', 234 'GPU Win x64 Builder (dbg)': 'gpu_tests_deqp_gles_debug_trybot',
235 'Linux ChromiumOS Builder': 'gpu_fyi_tests_chromeos_release_trybot', 235 'Linux ChromiumOS Builder': 'gpu_fyi_tests_chromeos_release_trybot',
236 'Linux ChromiumOS Ozone Builder': 'gpu_fyi_tests_chromeos_ozone_release_tr ybot',
236 'Mac GPU ASAN Release': 'gpu_fyi_tests_release_trybot_asan', 237 'Mac GPU ASAN Release': 'gpu_fyi_tests_release_trybot_asan',
237 }, 238 },
238 239
239 'chromium.linux': { 240 'chromium.linux': {
240 'Android Arm64 Builder (dbg)': 'android_debug_static_bot_arm64', 241 'Android Arm64 Builder (dbg)': 'android_debug_static_bot_arm64',
241 'Android Builder (dbg)': 'android_debug_static_bot', 242 'Android Builder (dbg)': 'android_debug_static_bot',
242 'Android Builder': 'android_release_bot_minimal_symbols', 243 'Android Builder': 'android_release_bot_minimal_symbols',
243 'Android Clang Builder (dbg)': 'android_clang_asan_errorprone_findbugs_deb ug_bot_minimal_symbols', 244 'Android Clang Builder (dbg)': 'android_clang_asan_errorprone_findbugs_deb ug_bot_minimal_symbols',
244 'Android Tests (dbg)': 'android_debug_static_bot', 245 'Android Tests (dbg)': 'android_debug_static_bot',
245 'Android Tests': 'android_release_bot_minimal_symbols', 246 'Android Tests': 'android_release_bot_minimal_symbols',
(...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after
1137 ], 1138 ],
1138 1139
1139 'debug_trybot': [ 1140 'debug_trybot': [
1140 'debug_trybot', 1141 'debug_trybot',
1141 ], 1142 ],
1142 1143
1143 'debug_trybot_x86': [ 1144 'debug_trybot_x86': [
1144 'debug_trybot', 'x86', 1145 'debug_trybot', 'x86',
1145 ], 1146 ],
1146 1147
1148 'gpu_fyi_tests_chromeos_ozone_release_trybot': [
1149 'gpu_fyi_tests', 'release_trybot', 'ozone',
Ken Russell (switch to Gerrit) 2016/12/07 22:27:11 I think you meant 'chromeos', 'ozone'.
fjhenigman 2016/12/09 04:38:45 Yep, looks like both magic words are necessary to
1150 ],
1151
1147 'gpu_fyi_tests_chromeos_release_trybot': [ 1152 'gpu_fyi_tests_chromeos_release_trybot': [
1148 'gpu_fyi_tests', 'release_trybot', 'chromeos', 1153 'gpu_fyi_tests', 'release_trybot', 'chromeos',
1149 ], 1154 ],
1150 1155
1151 'gpu_fyi_tests_debug_trybot': [ 1156 'gpu_fyi_tests_debug_trybot': [
1152 'gpu_fyi_tests', 'debug_trybot', 1157 'gpu_fyi_tests', 'debug_trybot',
1153 ], 1158 ],
1154 1159
1155 'gpu_fyi_tests_release_trybot': [ 1160 'gpu_fyi_tests_release_trybot': [
1156 'gpu_fyi_tests', 'release_trybot', 1161 'gpu_fyi_tests', 'release_trybot',
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
1817 1822
1818 'x64': { 1823 'x64': {
1819 'gn_args': 'target_cpu="x64"', 1824 'gn_args': 'target_cpu="x64"',
1820 }, 1825 },
1821 1826
1822 'x86': { 1827 'x86': {
1823 'gn_args': 'target_cpu="x86"', 1828 'gn_args': 'target_cpu="x86"',
1824 }, 1829 },
1825 }, 1830 },
1826 } 1831 }
OLDNEW
« content/test/gpu/generate_buildbot_json.py ('K') | « testing/buildbot/chromium.gpu.fyi.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698