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

Side by Side Diff: masters/master.chromium.mac/master_ios_cfg.py

Issue 2196953003: Remove GYP builders from chromium mac, win waterfalls. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: remove unused suppressions Created 4 years, 4 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.chromium.mac/master_mac_cfg.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from buildbot.schedulers.basic import SingleBranchScheduler 5 from buildbot.schedulers.basic import SingleBranchScheduler
6 6
7 from master.factory import annotator_factory 7 from master.factory import annotator_factory
8 8
9 m_annotator = annotator_factory.AnnotatorFactory() 9 m_annotator = annotator_factory.AnnotatorFactory()
10 10
11 def Update(config, active_master, c): 11 def Update(config, active_master, c):
12 c['schedulers'].extend([ 12 c['schedulers'].extend([
13 SingleBranchScheduler(name='ios', 13 SingleBranchScheduler(name='ios',
14 branch='master', 14 branch='master',
15 treeStableTimer=60, 15 treeStableTimer=60,
16 builderNames=[ 16 builderNames=[
17 'ios-device', 17 'ios-device',
18 'ios-device-gn',
19 'ios-simulator', 18 'ios-simulator',
20 'ios-simulator-gn',
21 ]), 19 ]),
22 ]) 20 ])
23 specs = [ 21 specs = [
24 {'name': 'ios-device'}, 22 {'name': 'ios-device'},
25 {'name': 'ios-device-gn'},
26 {'name': 'ios-simulator'}, 23 {'name': 'ios-simulator'},
27 {'name': 'ios-simulator-gn'},
28 ] 24 ]
29 25
30 c['builders'].extend([ 26 c['builders'].extend([
31 { 27 {
32 'name': spec['name'], 28 'name': spec['name'],
33 'factory': m_annotator.BaseFactory( 29 'factory': m_annotator.BaseFactory(
34 'ios/unified_builder_tester', 30 'ios/unified_builder_tester',
35 factory_properties=spec.get('factory_properties')), 31 factory_properties=spec.get('factory_properties')),
36 'notify_on_missing': True, 32 'notify_on_missing': True,
37 'category': '3mac', 33 'category': '3mac',
38 } for spec in specs 34 } for spec in specs
39 ]) 35 ])
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.mac/master_mac_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698