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

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

Issue 2538103002: Add ubsan_no_recover_hack to missing ubsan builders. (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 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after
1407 1407
1408 'tsan_disable_nacl_release_bot': [ 1408 'tsan_disable_nacl_release_bot': [
1409 'tsan', 'disable_nacl', 'release_bot', 1409 'tsan', 'disable_nacl', 'release_bot',
1410 ], 1410 ],
1411 1411
1412 'tsan_disable_nacl_release_trybot': [ 1412 'tsan_disable_nacl_release_trybot': [
1413 'tsan', 'disable_nacl', 'release_trybot', 1413 'tsan', 'disable_nacl', 'release_trybot',
1414 ], 1414 ],
1415 1415
1416 'ubsan_release_bot': [ 1416 'ubsan_release_bot': [
1417 'ubsan', 'release_bot', 1417 'ubsan', 'ubsan_no_recover_hack', 'release_bot',
1418 ], 1418 ],
1419 1419
1420 'ubsan_vptr_edge_release_bot': [ 1420 'ubsan_vptr_edge_release_bot': [
1421 'ubsan_vptr', 'edge', 'release_bot', 1421 'ubsan_vptr', 'ubsan_no_recover_hack', 'edge', 'release_bot',
1422 ], 1422 ],
1423 1423
1424 'ubsan_vptr_release_bot': [ 1424 'ubsan_vptr_release_bot': [
1425 'ubsan_vptr', 'ubsan_no_recover_hack', 'release_bot', 1425 'ubsan_vptr', 'ubsan_no_recover_hack', 'release_bot',
1426 ], 1426 ],
1427 1427
1428 'ubsan_vptr_release_trybot': [ 1428 'ubsan_vptr_release_trybot': [
1429 'ubsan_vptr', 'ubsan_no_recover_hack', 'release_trybot', 1429 'ubsan_vptr', 'ubsan_no_recover_hack', 'release_trybot',
1430 ], 1430 ],
1431 1431
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
1815 1815
1816 'x64': { 1816 'x64': {
1817 'gn_args': 'target_cpu="x64"', 1817 'gn_args': 'target_cpu="x64"',
1818 }, 1818 },
1819 1819
1820 'x86': { 1820 'x86': {
1821 'gn_args': 'target_cpu="x86"', 1821 'gn_args': 'target_cpu="x86"',
1822 }, 1822 },
1823 }, 1823 },
1824 } 1824 }
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