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

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

Issue 2426583002: libyuv: Switch {client,tryserver}.libyuv to GN (Closed)
Patch Set: Fix recipe errors 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
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 (GN)', 19 'Android Debug (GYP)',
20 'Android Release (GN)', 20 'Android Release (GYP)',
21 'Android Clang Debug', 21 'Android Clang Debug',
22 'Android ARM64 Debug', 22 'Android ARM64 Debug',
23 'Android32 x86 Debug', 23 'Android32 x86 Debug',
24 'Android64 x64 Debug', 24 'Android64 x64 Debug',
25 'Android32 MIPS Debug', 25 'Android32 MIPS Debug',
26 ]), 26 ]),
27 ]) 27 ])
28 28
29 specs = [ 29 specs = [
30 {'name': 'Android Debug'}, 30 {'name': 'Android Debug'},
31 {'name': 'Android Release'}, 31 {'name': 'Android Release'},
32 {'name': 'Android Debug (GN)', 'slavebuilddir': 'android_gn'}, 32 {'name': 'Android Debug (GYP)', 'slavebuilddir': 'android_gyp'},
33 {'name': 'Android Release (GN)', 'slavebuilddir': 'android_gn'}, 33 {'name': 'Android Release (GYP)', 'slavebuilddir': 'android_gyp'},
34 {'name': 'Android Clang Debug', 'slavebuilddir': 'android_clang'}, 34 {'name': 'Android Clang Debug', 'slavebuilddir': 'android_clang'},
35 {'name': 'Android ARM64 Debug', 'slavebuilddir': 'android_arm64'}, 35 {'name': 'Android ARM64 Debug', 'slavebuilddir': 'android_arm64'},
36 {'name': 'Android32 x86 Debug', 'slavebuilddir': 'android_x86'}, 36 {'name': 'Android32 x86 Debug', 'slavebuilddir': 'android_x86'},
37 {'name': 'Android64 x64 Debug', 'slavebuilddir': 'android_x64'}, 37 {'name': 'Android64 x64 Debug', 'slavebuilddir': 'android_x64'},
38 {'name': 'Android32 MIPS Debug', 'slavebuilddir': 'android_mips'}, 38 {'name': 'Android32 MIPS Debug', 'slavebuilddir': 'android_mips'},
39 { 39 {
40 'name': 'Android Tester ARM32 Debug (Nexus 5X)', 40 'name': 'Android Tester ARM32 Debug (Nexus 5X)',
41 'slavebuilddir': 'android_arm32', 41 'slavebuilddir': 'android_arm32',
42 }, 42 },
43 { 43 {
44 'name': 'Android Tester ARM32 Release (Nexus 5X)', 44 'name': 'Android Tester ARM32 Release (Nexus 5X)',
45 'slavebuilddir': 'android_arm32', 45 'slavebuilddir': 'android_arm32',
46 }, 46 },
47 { 47 {
48 'name': 'Android Tester ARM64 Debug (Nexus 5X)', 48 'name': 'Android Tester ARM64 Debug (Nexus 5X)',
49 'slavebuilddir': 'android_arm64', 49 'slavebuilddir': 'android_arm64',
50 }, 50 },
51 ] 51 ]
52 52
53 c['builders'].extend([ 53 c['builders'].extend([
54 { 54 {
55 'name': spec['name'], 55 'name': spec['name'],
56 'factory': m_annotator.BaseFactory('libyuv/libyuv'), 56 'factory': m_annotator.BaseFactory('libyuv/libyuv'),
57 'notify_on_missing': True, 57 'notify_on_missing': True,
58 'category': 'android', 58 'category': 'android',
59 'slavebuilddir': spec.get('slavebuilddir', 'android'), 59 'slavebuilddir': spec.get('slavebuilddir', 'android'),
60 } for spec in specs 60 } for spec in specs
61 ]) 61 ])
OLDNEW
« no previous file with comments | « no previous file | masters/master.client.libyuv/master_linux_cfg.py » ('j') | scripts/slave/recipe_modules/libyuv/api.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698