Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1373)

Side by Side Diff: masters/master.tryserver.chromium.win/master.cfg

Issue 1828583002: Adding Findit variable builders corresponding to those in chromium.webkit (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Fixing syntax mistake Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 { 225 {
226 'name': 'win_chromium_variable_chrome', 226 'name': 'win_chromium_variable_chrome',
227 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 227 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
228 'slavebuilddir': 'win_chrome' 228 'slavebuilddir': 'win_chrome'
229 }, 229 },
230 {
231 'name': 'win_chromium_variable_webkit_layout',
232 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
233 'slavebuilddir': 'win_layout'
234 },
235 {
236 'name': 'win_chromium_variable_webkit_builder',
237 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
238 'slavebuilddir': 'win_webkit'
239 },
240 {
241 'name': 'win_chromium_variable_webkit_win7_builder',
242 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
243 'slavebuilddir': 'win_webkit'
244 },
245 {
246 'name': 'win_chromium_variable_webkit_win7_builder_x64',
247 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
248 'slavebuilddir': 'win_webkit'
249 },
230 ] 250 ]
231 251
232 c['builders'] = [ 252 c['builders'] = [
233 b_win_nacl_sdk, 253 b_win_nacl_sdk,
234 b_win_nacl_sdk_build, 254 b_win_nacl_sdk_build,
235 ] + chromium_builders + variable_builders 255 ] + chromium_builders + variable_builders
236 256
237 257
238 # Slaves are loaded from slaves.cfg. 258 # Slaves are loaded from slaves.cfg.
239 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumWin') 259 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumWin')
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 # base.make_stop_form = hack_stop(base.make_stop_form) 383 # base.make_stop_form = hack_stop(base.make_stop_form)
364 384
365 385
366 ####### PROJECT IDENTITY 386 ####### PROJECT IDENTITY
367 387
368 # The 'projectURL' string will be used to provide a link 388 # The 'projectURL' string will be used to provide a link
369 # from buildbot HTML pages to your project's home page. 389 # from buildbot HTML pages to your project's home page.
370 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 390 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
371 391
372 # vi: set ts=4 sts=2 sw=2 et: 392 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.mac/slaves.cfg ('k') | masters/master.tryserver.chromium.win/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698