Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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-function -fno-inline -fno-omit-frame-pointer ' | |
|
inferno
2015/08/13 20:03:58
1. typo -fno-inline-functions
2. -gline-tables-onl
pcc1
2015/08/13 20:13:44
Done. I was going to revert https://codereview.chr
| |
| 1797 '-gline-tables-only"', | |
| 1796 'LLVM_DOWNLOAD_GOLD_PLUGIN': '1', | 1798 'LLVM_DOWNLOAD_GOLD_PLUGIN': '1', |
| 1797 }, | 1799 }, |
| 1798 }), | 1800 }), |
| 1799 'category': 'chromium_cfi', | 1801 'category': 'chromium_cfi', |
| 1800 'auto_reboot': True, | 1802 'auto_reboot': True, |
| 1801 } | 1803 } |
| 1802 | 1804 |
| 1803 b_chromium_win10 = { | 1805 b_chromium_win10 = { |
| 1804 'name': 'Chromium Win 10', | 1806 'name': 'Chromium Win 10', |
| 1805 'factory': m_annotator.BaseFactory('chromium'), | 1807 'factory': m_annotator.BaseFactory('chromium'), |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2141 c['status'].append(MailNotifier( | 2143 c['status'].append(MailNotifier( |
| 2142 fromaddr=ActiveMaster.from_address, # Reply-To address | 2144 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 2143 mode='failing', | 2145 mode='failing', |
| 2144 relayhost=config.Master.smtp, | 2146 relayhost=config.Master.smtp, |
| 2145 subject='Remoting Android Tests failing on %(builder)s', | 2147 subject='Remoting Android Tests failing on %(builder)s', |
| 2146 extraRecipients=[ | 2148 extraRecipients=[ |
| 2147 'remoting-android-test-results@google.com', | 2149 'remoting-android-test-results@google.com', |
| 2148 ], | 2150 ], |
| 2149 sendToInterestedUsers=False, | 2151 sendToInterestedUsers=False, |
| 2150 builders=['Android Remoting Tests'])) | 2152 builders=['Android Remoting Tests'])) |
| OLD | NEW |