| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 } | 204 } |
| 205 | 205 |
| 206 # These variable builders are used by Findit to identify culprit commits for | 206 # These variable builders are used by Findit to identify culprit commits for |
| 207 # compile or test failures on the main waterfall. They run on optional slaves | 207 # compile or test failures on the main waterfall. They run on optional slaves |
| 208 # and NOT CQ slaves. | 208 # and NOT CQ slaves. |
| 209 variable_builders = [ | 209 variable_builders = [ |
| 210 { | 210 { |
| 211 'name': 'win_chromium_variable', | 211 'name': 'win_chromium_variable', |
| 212 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 212 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 213 'slavebuilddir': 'win' | 213 'slavebuilddir': 'win' |
| 214 } | 214 }, |
| 215 { |
| 216 'name': 'win_chromium_variable_gn', |
| 217 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 218 'slavebuilddir': 'win_gn' |
| 219 }, |
| 215 ] | 220 ] |
| 216 | 221 |
| 217 c['builders'] = [ | 222 c['builders'] = [ |
| 218 b_win_nacl_sdk, | 223 b_win_nacl_sdk, |
| 219 b_win_nacl_sdk_build, | 224 b_win_nacl_sdk_build, |
| 220 ] + chromium_builders + variable_builders | 225 ] + chromium_builders + variable_builders |
| 221 | 226 |
| 222 | 227 |
| 223 # Slaves are loaded from slaves.cfg. | 228 # Slaves are loaded from slaves.cfg. |
| 224 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumWin') | 229 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumWin') |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 # base.make_stop_form = hack_stop(base.make_stop_form) | 353 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 349 | 354 |
| 350 | 355 |
| 351 ####### PROJECT IDENTITY | 356 ####### PROJECT IDENTITY |
| 352 | 357 |
| 353 # The 'projectURL' string will be used to provide a link | 358 # The 'projectURL' string will be used to provide a link |
| 354 # from buildbot HTML pages to your project's home page. | 359 # from buildbot HTML pages to your project's home page. |
| 355 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 360 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 356 | 361 |
| 357 # vi: set ts=4 sts=2 sw=2 et: | 362 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |