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

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

Issue 1982173002: [Findit] Adding variable builders for Linux ChromiumOS Full and Win x64 (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Forgot one Created 4 years, 7 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 'name': 'win_chromium_variable_archive', 216 'name': 'win_chromium_variable_archive',
217 'factory': baseFactory('findit/chromium/compile'), 217 'factory': baseFactory('findit/chromium/compile'),
218 'slavebuilddir': 'win_archive' 218 'slavebuilddir': 'win_archive'
219 }, 219 },
220 { 220 {
221 'name': 'win_chromium_variable_chrome', 221 'name': 'win_chromium_variable_chrome',
222 'factory': baseFactory('findit/chromium/compile'), 222 'factory': baseFactory('findit/chromium/compile'),
223 'slavebuilddir': 'win_chrome' 223 'slavebuilddir': 'win_chrome'
224 }, 224 },
225 { 225 {
226 'name': 'win_chromium_variable_clang',
227 'factory': baseFactory('findit/chromium/compile'),
228 'slavebuilddir': 'win'
229 },
230 {
226 'name': 'win_chromium_variable_webkit_layout', 231 'name': 'win_chromium_variable_webkit_layout',
227 'factory': baseFactory('findit/chromium/compile'), 232 'factory': baseFactory('findit/chromium/compile'),
228 'slavebuilddir': 'win_layout' 233 'slavebuilddir': 'win_layout'
229 }, 234 },
230 { 235 {
231 'name': 'win_chromium_variable_webkit_builder', 236 'name': 'win_chromium_variable_webkit_builder',
232 'factory': baseFactory('findit/chromium/compile'), 237 'factory': baseFactory('findit/chromium/compile'),
233 'slavebuilddir': 'win_webkit' 238 'slavebuilddir': 'win_webkit'
234 }, 239 },
235 { 240 {
236 'name': 'win_chromium_variable_webkit_win7_builder', 241 'name': 'win_chromium_variable_webkit_win7_builder',
237 'factory': baseFactory('findit/chromium/compile'), 242 'factory': baseFactory('findit/chromium/compile'),
238 'slavebuilddir': 'win_webkit' 243 'slavebuilddir': 'win_webkit'
239 }, 244 },
240 { 245 {
241 'name': 'win_chromium_variable_webkit_win7_builder_x64', 246 'name': 'win_chromium_variable_webkit_win7_builder_x64',
242 'factory': baseFactory('findit/chromium/compile'), 247 'factory': baseFactory('findit/chromium/compile'),
243 'slavebuilddir': 'win_webkit' 248 'slavebuilddir': 'win_webkit'
244 }, 249 },
250 {
251 'name': 'win_x64_chromium_variable_builder',
252 'factory': baseFactory('findit/chromium/compile'),
253 'slavebuilddir': 'win'
254 },
245 ] 255 ]
246 256
247 c['builders'] = [ 257 c['builders'] = [
248 b_win_nacl_sdk, 258 b_win_nacl_sdk,
249 b_win_nacl_sdk_build, 259 b_win_nacl_sdk_build,
250 ] + chromium_builders + variable_builders 260 ] + chromium_builders + variable_builders
251 261
252 262
253 # Slaves are loaded from slaves.cfg. 263 # Slaves are loaded from slaves.cfg.
254 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumWin') 264 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumWin')
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 # base.make_stop_form = hack_stop(base.make_stop_form) 388 # base.make_stop_form = hack_stop(base.make_stop_form)
379 389
380 390
381 ####### PROJECT IDENTITY 391 ####### PROJECT IDENTITY
382 392
383 # The 'projectURL' string will be used to provide a link 393 # The 'projectURL' string will be used to provide a link
384 # from buildbot HTML pages to your project's home page. 394 # from buildbot HTML pages to your project's home page.
385 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 395 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
386 396
387 # vi: set ts=4 sts=2 sw=2 et: 397 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.linux/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