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

Side by Side Diff: masters/master.tryserver.chromium.linux/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, 6 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
« no previous file with comments | « no previous file | masters/master.tryserver.chromium.linux/slaves.cfg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 { 363 {
364 'name': 'linux_chromium_webkit_leak_variable', 364 'name': 'linux_chromium_webkit_leak_variable',
365 'factory': baseFactory('findit/chromium/compile'), 365 'factory': baseFactory('findit/chromium/compile'),
366 'slavebuilddir': 'linux_layout_leak', 366 'slavebuilddir': 'linux_layout_leak',
367 }, 367 },
368 { 368 {
369 'name': 'linux_chromium_webkit_msan_variable', 369 'name': 'linux_chromium_webkit_msan_variable',
370 'factory': baseFactory('findit/chromium/compile'), 370 'factory': baseFactory('findit/chromium/compile'),
371 'slavebuilddir': 'linux_layout_msan', 371 'slavebuilddir': 'linux_layout_msan',
372 }, 372 },
373 {
374 'name': 'linux_chromiumos_full_variable',
375 'factory': baseFactory('findit/chromium/compile'),
376 'slavebuilddir': 'linux_chromeos',
377 },
373 ] 378 ]
374 379
375 for board in chromeos_boards: 380 for board in chromeos_boards:
376 variable_builders.append({ 381 variable_builders.append({
377 'name': 'chromeos_%s_variable' % (board,), 382 'name': 'chromeos_%s_variable' % (board,),
378 'factory': baseFactory('findit/chromium/compile'), 383 'factory': baseFactory('findit/chromium/compile'),
379 'slavebuilddir': 'chromeos_%s' % (board,), 384 'slavebuilddir': 'chromeos_%s' % (board,),
380 }) 385 })
381 386
382 c['builders'] = [ 387 c['builders'] = [
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 # base.make_stop_form = hack_stop(base.make_stop_form) 517 # base.make_stop_form = hack_stop(base.make_stop_form)
513 518
514 519
515 ####### PROJECT IDENTITY 520 ####### PROJECT IDENTITY
516 521
517 # The 'projectURL' string will be used to provide a link 522 # The 'projectURL' string will be used to provide a link
518 # from buildbot HTML pages to your project's home page. 523 # from buildbot HTML pages to your project's home page.
519 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 524 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
520 525
521 # vi: set ts=4 sts=2 sw=2 et: 526 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW
« no previous file with comments | « no previous file | masters/master.tryserver.chromium.linux/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698