| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 { | 215 { |
| 216 'name': 'win_chromium_variable_gn', | 216 'name': 'win_chromium_variable_gn', |
| 217 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 217 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 218 'slavebuilddir': 'win_gn' | 218 'slavebuilddir': 'win_gn' |
| 219 }, | 219 }, |
| 220 { |
| 221 'name': 'win_chromium_variable_archive', |
| 222 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 223 'slavebuilddir': 'win_archive' |
| 224 }, |
| 220 ] | 225 ] |
| 221 | 226 |
| 222 c['builders'] = [ | 227 c['builders'] = [ |
| 223 b_win_nacl_sdk, | 228 b_win_nacl_sdk, |
| 224 b_win_nacl_sdk_build, | 229 b_win_nacl_sdk_build, |
| 225 ] + chromium_builders + variable_builders | 230 ] + chromium_builders + variable_builders |
| 226 | 231 |
| 227 | 232 |
| 228 # Slaves are loaded from slaves.cfg. | 233 # Slaves are loaded from slaves.cfg. |
| 229 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumWin') | 234 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumWin') |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 # base.make_stop_form = hack_stop(base.make_stop_form) | 358 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 354 | 359 |
| 355 | 360 |
| 356 ####### PROJECT IDENTITY | 361 ####### PROJECT IDENTITY |
| 357 | 362 |
| 358 # The 'projectURL' string will be used to provide a link | 363 # The 'projectURL' string will be used to provide a link |
| 359 # from buildbot HTML pages to your project's home page. | 364 # from buildbot HTML pages to your project's home page. |
| 360 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 365 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 361 | 366 |
| 362 # vi: set ts=4 sts=2 sw=2 et: | 367 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |