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

Side by Side Diff: masters/master.tryserver.chromium.mac/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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 variable_builders = [ 182 variable_builders = [
183 { 183 {
184 'name': 'mac_chromium_variable', 184 'name': 'mac_chromium_variable',
185 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 185 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
186 'slavebuilddir': 'mac' 186 'slavebuilddir': 'mac'
187 }, 187 },
188 { 188 {
189 'name': 'mac_chromium_asan_variable', 189 'name': 'mac_chromium_asan_variable',
190 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 190 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
191 'slavebuilddir': 'mac_asan' 191 'slavebuilddir': 'mac_asan'
192 },
193 {
194 'name': 'mac_chromium_variable_archive',
195 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
196 'slavebuilddir': 'mac_archive'
192 } 197 }
193 ] 198 ]
194 199
195 c['builders'] = [ 200 c['builders'] = [
196 b_ios_dbg_simulator_ninja, 201 b_ios_dbg_simulator_ninja,
197 b_ios_rel_device_ninja, 202 b_ios_rel_device_ninja,
198 b_ios_dbg_simulator, 203 b_ios_dbg_simulator,
199 b_ios_rel_device, 204 b_ios_rel_device,
200 b_ios_dbg_simulator_gn, 205 b_ios_dbg_simulator_gn,
201 b_ios_rel_device_gn, 206 b_ios_rel_device_gn,
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 # base.make_stop_form = hack_stop(base.make_stop_form) 333 # base.make_stop_form = hack_stop(base.make_stop_form)
329 334
330 335
331 ####### PROJECT IDENTITY 336 ####### PROJECT IDENTITY
332 337
333 # The 'projectURL' string will be used to provide a link 338 # The 'projectURL' string will be used to provide a link
334 # from buildbot HTML pages to your project's home page. 339 # from buildbot HTML pages to your project's home page.
335 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 340 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
336 341
337 # vi: set ts=4 sts=2 sw=2 et: 342 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698