| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import os | 10 import os |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 'name': 'mac_chromium_gn_upload', | 132 'name': 'mac_chromium_gn_upload', |
| 133 'factory': m_annotator.BaseFactory('chromium_gn_upload'), | 133 'factory': m_annotator.BaseFactory('chromium_gn_upload'), |
| 134 'slavebuilddir': 'mac_gn', | 134 'slavebuilddir': 'mac_gn', |
| 135 }]) | 135 }]) |
| 136 | 136 |
| 137 chromium_builders.append({ | 137 chromium_builders.append({ |
| 138 'name': 'mac_chromium_asan_rel_ng', | 138 'name': 'mac_chromium_asan_rel_ng', |
| 139 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), | 139 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), |
| 140 }) | 140 }) |
| 141 | 141 |
| 142 chromium_builders.append({ |
| 143 'name': 'mac_deterministic', |
| 144 'factory': m_annotator.BaseFactory('deterministic_build'), |
| 145 }) |
| 146 |
| 142 # NaCl SDK try bots | 147 # NaCl SDK try bots |
| 143 b_mac_nacl_sdk = { | 148 b_mac_nacl_sdk = { |
| 144 'name': 'mac_nacl_sdk', | 149 'name': 'mac_nacl_sdk', |
| 145 'factory': m_annotator.BaseFactory('nacl/sdk'), | 150 'factory': m_annotator.BaseFactory('nacl/sdk'), |
| 146 } | 151 } |
| 147 | 152 |
| 148 # NaCl SDK build-only try bots | 153 # NaCl SDK build-only try bots |
| 149 b_mac_nacl_sdk_build = { | 154 b_mac_nacl_sdk_build = { |
| 150 'name': 'mac_nacl_sdk_build', | 155 'name': 'mac_nacl_sdk_build', |
| 151 'factory': m_annotator.BaseFactory('nacl/sdk_build'), | 156 'factory': m_annotator.BaseFactory('nacl/sdk_build'), |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 # base.make_stop_form = hack_stop(base.make_stop_form) | 314 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 310 | 315 |
| 311 | 316 |
| 312 ####### PROJECT IDENTITY | 317 ####### PROJECT IDENTITY |
| 313 | 318 |
| 314 # The 'projectURL' string will be used to provide a link | 319 # The 'projectURL' string will be used to provide a link |
| 315 # from buildbot HTML pages to your project's home page. | 320 # from buildbot HTML pages to your project's home page. |
| 316 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 321 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 317 | 322 |
| 318 # vi: set ts=4 sts=2 sw=2 et: | 323 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |