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

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

Issue 1805263003: Adding Variable builders to cover all builders under master "chromium" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Created 4 years, 9 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 'name': 'linux_chromium_variable', 342 'name': 'linux_chromium_variable',
343 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 343 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
344 'slavebuilddir': 'linux', 344 'slavebuilddir': 'linux',
345 }, 345 },
346 { 346 {
347 'name': 'linux_chromium_variable_32', 347 'name': 'linux_chromium_variable_32',
348 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 348 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
349 'slavebuilddir': 'linux_32', 349 'slavebuilddir': 'linux_32',
350 }, 350 },
351 { 351 {
352 'name': 'linux_chromium_variable_clobber',
353 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
354 'slavebuilddir': 'linux_clobber',
355 },
356 {
357 'name': 'linux_chromium_variable_32_clobber',
358 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
359 'slavebuilddir': 'linux_clobber',
360 },
361 {
352 'name': 'linux_chromium_asan_variable', 362 'name': 'linux_chromium_asan_variable',
353 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 363 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
354 'slavebuilddir': 'linux_asan', 364 'slavebuilddir': 'linux_asan',
355 }, 365 },
356 { 366 {
357 'name': 'linux_chromium_chromeos_variable', 367 'name': 'linux_chromium_chromeos_variable',
358 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 368 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
359 'slavebuilddir': 'linux_chromeos', 369 'slavebuilddir': 'linux_chromeos',
360 }, 370 },
361 { 371 {
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 # base.make_stop_form = hack_stop(base.make_stop_form) 527 # base.make_stop_form = hack_stop(base.make_stop_form)
518 528
519 529
520 ####### PROJECT IDENTITY 530 ####### PROJECT IDENTITY
521 531
522 # The 'projectURL' string will be used to provide a link 532 # The 'projectURL' string will be used to provide a link
523 # from buildbot HTML pages to your project's home page. 533 # from buildbot HTML pages to your project's home page.
524 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 534 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
525 535
526 # vi: set ts=4 sts=2 sw=2 et: 536 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698