| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 }, | 166 }, |
| 167 ]) | 167 ]) |
| 168 | 168 |
| 169 chromium_builders.extend([{ | 169 chromium_builders.extend([{ |
| 170 'name': 'win_pgo', | 170 'name': 'win_pgo', |
| 171 'factory': m_annotator.BaseFactory('chromium_pgo', timeout=24000), | 171 'factory': m_annotator.BaseFactory('chromium_pgo', timeout=24000), |
| 172 'slavebuilddir': 'win', | 172 'slavebuilddir': 'win', |
| 173 }, | 173 }, |
| 174 ]) | 174 ]) |
| 175 | 175 |
| 176 chromium_builders.append({ |
| 177 'name': 'win_deterministic', |
| 178 'factory': m_annotator.BaseFactory('deterministic_build'), |
| 179 'slavebuilddir': 'det', |
| 180 }) |
| 181 |
| 176 # NaCl SDK try bots | 182 # NaCl SDK try bots |
| 177 b_win_nacl_sdk = { | 183 b_win_nacl_sdk = { |
| 178 'name': 'win_nacl_sdk', | 184 'name': 'win_nacl_sdk', |
| 179 'factory': m_annotator.BaseFactory('nacl/sdk'), | 185 'factory': m_annotator.BaseFactory('nacl/sdk'), |
| 180 } | 186 } |
| 181 | 187 |
| 182 # NaCl SDK build-only try bots | 188 # NaCl SDK build-only try bots |
| 183 b_win_nacl_sdk_build = { | 189 b_win_nacl_sdk_build = { |
| 184 'name': 'win_nacl_sdk_build', | 190 'name': 'win_nacl_sdk_build', |
| 185 'factory': m_annotator.BaseFactory('nacl/sdk_build'), | 191 'factory': m_annotator.BaseFactory('nacl/sdk_build'), |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 # base.make_stop_form = hack_stop(base.make_stop_form) | 349 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 344 | 350 |
| 345 | 351 |
| 346 ####### PROJECT IDENTITY | 352 ####### PROJECT IDENTITY |
| 347 | 353 |
| 348 # The 'projectURL' string will be used to provide a link | 354 # The 'projectURL' string will be used to provide a link |
| 349 # from buildbot HTML pages to your project's home page. | 355 # from buildbot HTML pages to your project's home page. |
| 350 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 356 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 351 | 357 |
| 352 # vi: set ts=4 sts=2 sw=2 et: | 358 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |