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