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

Side by Side Diff: masters/master.chromium.fyi/master.cfg

Issue 1325803003: CFI Linux CF: Enable detailed diagnostics using cfi_diag=1. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 3 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 # vim: ft=python: 1 # vim: ft=python:
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 from buildbot.changes.filter import ChangeFilter 6 from buildbot.changes.filter import ChangeFilter
7 from buildbot.scheduler import Dependent 7 from buildbot.scheduler import Dependent
8 from buildbot.scheduler import Nightly 8 from buildbot.scheduler import Nightly
9 from buildbot.scheduler import Periodic 9 from buildbot.scheduler import Periodic
10 from buildbot.scheduler import Scheduler 10 from buildbot.scheduler import Scheduler
(...skipping 1697 matching lines...) Expand 10 before | Expand all | Expand 10 after
1708 compile_timeout=7200, 1708 compile_timeout=7200,
1709 clobber=True, 1709 clobber=True,
1710 target='Release', 1710 target='Release',
1711 options=['chromium_builder_asan'], 1711 options=['chromium_builder_asan'],
1712 factory_properties={ 1712 factory_properties={
1713 'cf_archive_build': ActiveMaster.is_production_host, 1713 'cf_archive_build': ActiveMaster.is_production_host,
1714 'cf_archive_name': 'cfi', 1714 'cf_archive_name': 'cfi',
1715 'gs_bucket': 'gs://chromium-browser-cfi', 1715 'gs_bucket': 'gs://chromium-browser-cfi',
1716 'gs_acl': 'public-read', 1716 'gs_acl': 'public-read',
1717 'gclient_env': { 1717 'gclient_env': {
1718 'GYP_DEFINES': 'cfi_vptr=1 release_extra_cflags="-O1 ' 1718 'GYP_DEFINES': 'cfi_vptr=1 cfi_diag=1 release_extra_cflags="-O1 '
1719 '-fno-inline-functions -fno-inline -fno-omit-frame-pointer"', 1719 '-fno-inline-functions -fno-inline -fno-omit-frame-pointer"',
1720 'LLVM_DOWNLOAD_GOLD_PLUGIN': '1', 1720 'LLVM_DOWNLOAD_GOLD_PLUGIN': '1',
1721 }, 1721 },
1722 }), 1722 }),
1723 'category': 'chromium_cfi', 1723 'category': 'chromium_cfi',
1724 'auto_reboot': True, 1724 'auto_reboot': True,
1725 } 1725 }
1726 1726
1727 b_chromium_win10 = { 1727 b_chromium_win10 = {
1728 'name': 'Chromium Win 10', 1728 'name': 'Chromium Win 10',
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
2031 fromaddr=ActiveMaster.from_address, # Reply-To address 2031 fromaddr=ActiveMaster.from_address, # Reply-To address
2032 mode='failing', 2032 mode='failing',
2033 relayhost=config.Master.smtp, 2033 relayhost=config.Master.smtp,
2034 subject='Build failure on %(builder)s', 2034 subject='Build failure on %(builder)s',
2035 extraRecipients=[ 2035 extraRecipients=[
2036 'sebmarchand+pgofailure@google.com', 2036 'sebmarchand+pgofailure@google.com',
2037 'scottmg+pgofailure@google.com' 2037 'scottmg+pgofailure@google.com'
2038 ], 2038 ],
2039 sendToInterestedUsers=False, 2039 sendToInterestedUsers=False,
2040 builders=['Chromium Win PGO Builder'])) 2040 builders=['Chromium Win PGO Builder']))
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