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

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

Issue 1809453002: Adding variable builder for mac_gn (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
« no previous file with comments | « no previous file | masters/master.tryserver.chromium.mac/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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 b_mac_nacl_sdk_build = { 174 b_mac_nacl_sdk_build = {
175 'name': 'mac_nacl_sdk_build', 175 'name': 'mac_nacl_sdk_build',
176 'factory': m_annotator.BaseFactory('nacl/sdk_build'), 176 'factory': m_annotator.BaseFactory('nacl/sdk_build'),
177 } 177 }
178 178
179 # These variable builders are used by Findit to identify culprit commits for 179 # These variable builders are used by Findit to identify culprit commits for
180 # compile or test failures on the main waterfall. They run on optional slaves 180 # compile or test failures on the main waterfall. They run on optional slaves
181 # and NOT CQ slaves. 181 # and NOT CQ slaves.
182 variable_builders = [ 182 variable_builders = [
183 { 183 {
184 'name': 'mac_chromium_asan_variable',
185 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
186 'slavebuilddir': 'mac_asan'
187 },
188 {
184 'name': 'mac_chromium_variable', 189 'name': 'mac_chromium_variable',
185 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 190 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
186 'slavebuilddir': 'mac' 191 'slavebuilddir': 'mac'
187 }, 192 },
188 { 193 {
189 'name': 'mac_chromium_asan_variable', 194 'name': 'mac_chromium_variable_gn',
190 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 195 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
191 'slavebuilddir': 'mac_asan' 196 'slavebuilddir': 'mac_gn'
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,
202 b_mac_nacl_sdk, 207 b_mac_nacl_sdk,
(...skipping 125 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
« no previous file with comments | « no previous file | masters/master.tryserver.chromium.mac/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698