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

Side by Side Diff: masters/master.client.libyuv/master_android_cfg.py

Issue 2426883002: libyuv: Remove all GYP builders. (Closed)
Patch Set: Removed unused chromium recipe module configs Created 4 years, 2 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.client.libyuv/master_linux_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(c): 11 def Update(c):
12 c['schedulers'].extend([ 12 c['schedulers'].extend([
13 SingleBranchScheduler(name='libyuv_android_scheduler', 13 SingleBranchScheduler(name='libyuv_android_scheduler',
14 branch='master', 14 branch='master',
15 treeStableTimer=0, 15 treeStableTimer=0,
16 builderNames=[ 16 builderNames=[
17 'Android Debug', 17 'Android Debug',
18 'Android Release', 18 'Android Release',
19 'Android Debug (GYP)',
20 'Android Release (GYP)',
21 'Android Clang Debug', 19 'Android Clang Debug',
22 'Android ARM64 Debug', 20 'Android ARM64 Debug',
23 'Android32 x86 Debug', 21 'Android32 x86 Debug',
24 'Android64 x64 Debug', 22 'Android64 x64 Debug',
25 'Android32 MIPS Debug', 23 'Android32 MIPS Debug',
26 ]), 24 ]),
27 ]) 25 ])
28 26
29 specs = [ 27 specs = [
30 {'name': 'Android Debug'}, 28 {'name': 'Android Debug'},
31 {'name': 'Android Release'}, 29 {'name': 'Android Release'},
32 {'name': 'Android Debug (GYP)', 'slavebuilddir': 'android_gyp'},
33 {'name': 'Android Release (GYP)', 'slavebuilddir': 'android_gyp'},
34 {'name': 'Android Clang Debug', 'slavebuilddir': 'android_clang'}, 30 {'name': 'Android Clang Debug', 'slavebuilddir': 'android_clang'},
35 {'name': 'Android ARM64 Debug', 'slavebuilddir': 'android_arm64'}, 31 {'name': 'Android ARM64 Debug', 'slavebuilddir': 'android_arm64'},
36 {'name': 'Android32 x86 Debug', 'slavebuilddir': 'android_x86'}, 32 {'name': 'Android32 x86 Debug', 'slavebuilddir': 'android_x86'},
37 {'name': 'Android64 x64 Debug', 'slavebuilddir': 'android_x64'}, 33 {'name': 'Android64 x64 Debug', 'slavebuilddir': 'android_x64'},
38 {'name': 'Android32 MIPS Debug', 'slavebuilddir': 'android_mips'}, 34 {'name': 'Android32 MIPS Debug', 'slavebuilddir': 'android_mips'},
39 { 35 {
40 'name': 'Android Tester ARM32 Debug (Nexus 5X)', 36 'name': 'Android Tester ARM32 Debug (Nexus 5X)',
41 'slavebuilddir': 'android_arm32', 37 'slavebuilddir': 'android_arm32',
42 }, 38 },
43 { 39 {
44 'name': 'Android Tester ARM32 Release (Nexus 5X)', 40 'name': 'Android Tester ARM32 Release (Nexus 5X)',
45 'slavebuilddir': 'android_arm32', 41 'slavebuilddir': 'android_arm32',
46 }, 42 },
47 { 43 {
48 'name': 'Android Tester ARM64 Debug (Nexus 5X)', 44 'name': 'Android Tester ARM64 Debug (Nexus 5X)',
49 'slavebuilddir': 'android_arm64', 45 'slavebuilddir': 'android_arm64',
50 }, 46 },
51 ] 47 ]
52 48
53 c['builders'].extend([ 49 c['builders'].extend([
54 { 50 {
55 'name': spec['name'], 51 'name': spec['name'],
56 'factory': m_annotator.BaseFactory('libyuv/libyuv'), 52 'factory': m_annotator.BaseFactory('libyuv/libyuv'),
57 'notify_on_missing': True, 53 'notify_on_missing': True,
58 'category': 'android', 54 'category': 'android',
59 'slavebuilddir': spec.get('slavebuilddir', 'android'), 55 'slavebuilddir': spec.get('slavebuilddir', 'android'),
60 } for spec in specs 56 } for spec in specs
61 ]) 57 ])
OLDNEW
« no previous file with comments | « no previous file | masters/master.client.libyuv/master_linux_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698