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

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

Issue 2098943002: Rename Mac/Win GN builders to GYP builders. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: fix masters_recipes_test.py to handle deprecated builders 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
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 'slavebuilddir': 'mac' 117 'slavebuilddir': 'mac'
118 }) 118 })
119 119
120 chromium_builders.append({ 120 chromium_builders.append({
121 'name': 'mac_chromium_archive_rel_ng', 121 'name': 'mac_chromium_archive_rel_ng',
122 'factory': baseFactory('chromium_trybot', timeout=3600), 122 'factory': baseFactory('chromium_trybot', timeout=3600),
123 'slavebuilddir': 'mac_ng' 123 'slavebuilddir': 'mac_ng'
124 }) 124 })
125 125
126 chromium_builders.extend([{ 126 chromium_builders.extend([{
127 'name': 'mac_chromium_gn_dbg', 127 'name': 'mac_chromium_gyp_dbg',
128 'factory': baseFactory('chromium_trybot'), 128 'factory': baseFactory('chromium_trybot'),
129 'slavebuilddir': 'mac_gn', 129 'slavebuilddir': 'mac_gyp',
130 }, { 130 }, {
131 'name': 'mac_chromium_gn_rel', 131 'name': 'mac_chromium_gyp_rel',
132 'factory': baseFactory( 132 'factory': baseFactory(
133 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), 133 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME),
134 'slavebuilddir': 'mac_gn', 134 'slavebuilddir': 'mac_gyp',
135 }, { 135 }, {
136 'name': 'mac_chromium_gn_upload', 136 'name': 'mac_chromium_gn_upload',
137 'factory': baseFactory('chromium_gn_upload'), 137 'factory': baseFactory('chromium_gn_upload'),
138 'slavebuilddir': 'mac_gn', 138 'slavebuilddir': 'mac_gn',
139 }]) 139 }])
140 140
141 chromium_builders.append({ 141 chromium_builders.append({
142 'name': 'mac_upload_clang', 142 'name': 'mac_upload_clang',
143 'factory': baseFactory('chromium_upload_clang'), 143 'factory': baseFactory('chromium_upload_clang'),
144 'slavebuilddir': 'mac_upload_clang', 144 'slavebuilddir': 'mac_upload_clang',
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 # base.make_stop_form = hack_stop(base.make_stop_form) 360 # base.make_stop_form = hack_stop(base.make_stop_form)
361 361
362 362
363 ####### PROJECT IDENTITY 363 ####### PROJECT IDENTITY
364 364
365 # The 'projectURL' string will be used to provide a link 365 # The 'projectURL' string will be used to provide a link
366 # from buildbot HTML pages to your project's home page. 366 # from buildbot HTML pages to your project's home page.
367 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 367 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
368 368
369 # vi: set ts=4 sts=2 sw=2 et: 369 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698