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

Side by Side Diff: masters/master.tryserver.libyuv/master.cfg

Issue 2015883002: libyuv: Add Android x86, x64 and MIPS bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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
« no previous file with comments | « masters/master.client.libyuv/slaves.cfg ('k') | masters/master.tryserver.libyuv/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 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # These modules come from scripts, which must be in the PYTHONPATH. 5 # These modules come from scripts, which must be in the PYTHONPATH.
6 from master import master_utils 6 from master import master_utils
7 from master import slaves_list 7 from master import slaves_list
8 from master.builders_pools import BuildersPools 8 from master.builders_pools import BuildersPools
9 from master.factory import annotator_factory 9 from master.factory import annotator_factory
10 from master.try_job_http import TryJobHTTP 10 from master.try_job_http import TryJobHTTP
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, 58 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'},
59 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, 59 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'},
60 {'name': 'linux_ubsan', 'slavebuilddir': 'linux_ubsan'}, 60 {'name': 'linux_ubsan', 'slavebuilddir': 'linux_ubsan'},
61 {'name': 'linux_ubsan_vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, 61 {'name': 'linux_ubsan_vptr', 'slavebuilddir': 'linux_ubsan_vptr'},
62 {'name': 'android', 'slavebuilddir': 'android'}, 62 {'name': 'android', 'slavebuilddir': 'android'},
63 {'name': 'android_rel', 'slavebuilddir': 'android'}, 63 {'name': 'android_rel', 'slavebuilddir': 'android'},
64 {'name': 'android_gn', 'slavebuilddir': 'android_gn'}, 64 {'name': 'android_gn', 'slavebuilddir': 'android_gn'},
65 {'name': 'android_gn_rel', 'slavebuilddir': 'android_gn'}, 65 {'name': 'android_gn_rel', 'slavebuilddir': 'android_gn'},
66 {'name': 'android_clang', 'slavebuilddir': 'android_clang'}, 66 {'name': 'android_clang', 'slavebuilddir': 'android_clang'},
67 {'name': 'android_arm64', 'slavebuilddir': 'android_arm64'}, 67 {'name': 'android_arm64', 'slavebuilddir': 'android_arm64'},
68 {'name': 'android_x86', 'slavebuilddir': 'android_x86'},
69 {'name': 'android_x64', 'slavebuilddir': 'android_x64'},
70 {'name': 'android_mips', 'slavebuilddir': 'android_mips'},
68 ] 71 ]
69 72
70 m_annotator = annotator_factory.AnnotatorFactory() 73 m_annotator = annotator_factory.AnnotatorFactory()
71 c['builders'] = [ 74 c['builders'] = [
72 { 75 {
73 'name': spec['name'], 76 'name': spec['name'],
74 'factory': m_annotator.BaseFactory('libyuv/libyuv'), 77 'factory': m_annotator.BaseFactory('libyuv/libyuv'),
75 'slavebuilddir': spec['slavebuilddir'], 78 'slavebuilddir': spec['slavebuilddir'],
76 } for spec in specs 79 } for spec in specs
77 ] 80 ]
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 # Must be at least 2x the number of slaves. 167 # Must be at least 2x the number of slaves.
165 c['eventHorizon'] = 100 168 c['eventHorizon'] = 100
166 # Must be at least 2x the number of on-going builds. 169 # Must be at least 2x the number of on-going builds.
167 c['buildCacheSize'] = 100 170 c['buildCacheSize'] = 100
168 171
169 ####### PROJECT IDENTITY 172 ####### PROJECT IDENTITY
170 173
171 # The 'projectURL' string will be used to provide a link 174 # The 'projectURL' string will be used to provide a link
172 # from buildbot HTML pages to your project's home page. 175 # from buildbot HTML pages to your project's home page.
173 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 176 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
OLDNEW
« no previous file with comments | « masters/master.client.libyuv/slaves.cfg ('k') | masters/master.tryserver.libyuv/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698