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

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

Issue 1291123002: CFI Linux CF: Add flags for better stack traces. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Address comments Created 5 years, 4 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 1774 matching lines...) Expand 10 before | Expand all | Expand 10 after
1785 compile_timeout=7200, 1785 compile_timeout=7200,
1786 clobber=True, 1786 clobber=True,
1787 target='Release', 1787 target='Release',
1788 options=['chromium_builder_asan'], 1788 options=['chromium_builder_asan'],
1789 factory_properties={ 1789 factory_properties={
1790 'cf_archive_build': ActiveMaster.is_production_host, 1790 'cf_archive_build': ActiveMaster.is_production_host,
1791 'cf_archive_name': 'cfi', 1791 'cf_archive_name': 'cfi',
1792 'gs_bucket': 'gs://chromium-browser-cfi', 1792 'gs_bucket': 'gs://chromium-browser-cfi',
1793 'gs_acl': 'public-read', 1793 'gs_acl': 'public-read',
1794 'gclient_env': { 1794 'gclient_env': {
1795 'GYP_DEFINES': 'cfi_vptr=1', 1795 'GYP_DEFINES': 'cfi_vptr=1 release_extra_cflags="-O1 '
1796 '-fno-inline-functions -fno-inline -fno-omit-frame-pointer"',
1796 'LLVM_DOWNLOAD_GOLD_PLUGIN': '1', 1797 'LLVM_DOWNLOAD_GOLD_PLUGIN': '1',
1797 }, 1798 },
1798 }), 1799 }),
1799 'category': 'chromium_cfi', 1800 'category': 'chromium_cfi',
1800 'auto_reboot': True, 1801 'auto_reboot': True,
1801 } 1802 }
1802 1803
1803 b_chromium_win10 = { 1804 b_chromium_win10 = {
1804 'name': 'Chromium Win 10', 1805 'name': 'Chromium Win 10',
1805 'factory': m_annotator.BaseFactory('chromium'), 1806 'factory': m_annotator.BaseFactory('chromium'),
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
2141 c['status'].append(MailNotifier( 2142 c['status'].append(MailNotifier(
2142 fromaddr=ActiveMaster.from_address, # Reply-To address 2143 fromaddr=ActiveMaster.from_address, # Reply-To address
2143 mode='failing', 2144 mode='failing',
2144 relayhost=config.Master.smtp, 2145 relayhost=config.Master.smtp,
2145 subject='Remoting Android Tests failing on %(builder)s', 2146 subject='Remoting Android Tests failing on %(builder)s',
2146 extraRecipients=[ 2147 extraRecipients=[
2147 'remoting-android-test-results@google.com', 2148 'remoting-android-test-results@google.com',
2148 ], 2149 ],
2149 sendToInterestedUsers=False, 2150 sendToInterestedUsers=False,
2150 builders=['Android Remoting Tests'])) 2151 builders=['Android Remoting Tests']))
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