| 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 1697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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'])) |
| OLD | NEW |