OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # Sets up all the builders we want this buildbot master to run. | 5 # Sets up all the builders we want this buildbot master to run. |
6 | 6 |
7 from skia_master_scripts import factory as skia_factory | 7 from skia_master_scripts import factory as skia_factory |
8 from skia_master_scripts import android_factory | |
9 from skia_master_scripts import chromeos_factory | |
10 from skia_master_scripts import ios_factory | |
11 from skia_master_scripts import nacl_factory | |
8 from skia_master_scripts import utils | 12 from skia_master_scripts import utils |
9 from skia_master_scripts.utils import MakeBuilderSet, \ | 13 from skia_master_scripts.utils import MakeBuilderSet, \ |
10 MakeAndroidBuilderSet, \ | 14 MakeAndroidBuilderSet, \ |
15 MakeCompileBuilderSet, \ | |
11 MakeChromeOSBuilderSet, \ | 16 MakeChromeOSBuilderSet, \ |
12 MakeIOSBuilderSet, \ | 17 MakeIOSBuilderSet, \ |
13 MakeHousekeeperBuilderSet, \ | 18 MakeHousekeeperBuilderSet, \ |
14 MakeNaClBuilderSet | 19 MakeNaClBuilderSet |
15 | 20 |
16 # Directory where we want to record performance data | 21 # Directory where we want to record performance data |
17 # | 22 # |
18 # TODO(epoger): consider changing to reuse existing config.Master.perf_base_url, | 23 # TODO(epoger): consider changing to reuse existing config.Master.perf_base_url, |
19 # config.Master.perf_report_url_suffix, etc. | 24 # config.Master.perf_report_url_suffix, etc. |
20 perf_output_basedir_linux = '../../../../perfdata' | 25 perf_output_basedir_linux = '../../../../perfdata' |
(...skipping 23 matching lines...) Expand all Loading... | |
44 helper.TryJobRietveld(utils.TRY_SCHEDULER_RIETVELD) | 49 helper.TryJobRietveld(utils.TRY_SCHEDULER_RIETVELD) |
45 | 50 |
46 # | 51 # |
47 # Set up all the builders. | 52 # Set up all the builders. |
48 # | 53 # |
49 # Don't put spaces or 'funny characters' within the builder names, so that | 54 # Don't put spaces or 'funny characters' within the builder names, so that |
50 # we can safely use the builder name as part of a filepath. | 55 # we can safely use the builder name as part of a filepath. |
51 # | 56 # |
52 do_upload_results = active_master.is_production_host | 57 do_upload_results = active_master.is_production_host |
53 | 58 |
59 # Compile-only builders. | |
60 defaults['category'] = ' Build' | |
61 | |
borenet
2013/04/24 15:02:38
Note that I could have grouped Debug/Release and 3
| |
62 # Linux | |
63 MakeCompileBuilderSet( | |
64 helper=helper, | |
65 scheduler='skia_rel', | |
66 os='Ubuntu12', | |
67 compiler='GCC', | |
borenet
2013/04/24 15:02:38
We should double-check the compilers.
| |
68 configuration=skia_factory.CONFIG_DEBUG, | |
69 target_arch='32', | |
70 factory_type=skia_factory.SkiaFactory, | |
71 environment_variables={'GYP_DEFINES': 'skia_arch_width=32'}, | |
borenet
2013/04/24 15:02:38
Please help me verify that I have configured the n
| |
72 compile_warnings_as_errors=True) | |
73 MakeCompileBuilderSet( | |
74 helper=helper, | |
75 scheduler='skia_rel', | |
76 os='Ubuntu12', | |
77 compiler='GCC', | |
78 configuration=skia_factory.CONFIG_RELEASE, | |
79 target_arch='32', | |
80 factory_type=skia_factory.SkiaFactory, | |
81 environment_variables={'GYP_DEFINES': 'skia_arch_width=32'}, | |
82 compile_warnings_as_errors=True) | |
83 MakeCompileBuilderSet( | |
84 helper=helper, | |
85 scheduler='skia_rel', | |
86 os='Ubuntu12', | |
87 compiler='GCC', | |
88 configuration=skia_factory.CONFIG_DEBUG, | |
89 target_arch='64', | |
90 factory_type=skia_factory.SkiaFactory, | |
91 environment_variables={'GYP_DEFINES': 'skia_arch_width=64'}, | |
92 compile_warnings_as_errors=True) | |
93 MakeCompileBuilderSet( | |
94 helper=helper, | |
95 scheduler='skia_rel', | |
96 os='Ubuntu12', | |
97 compiler='GCC', | |
98 configuration=skia_factory.CONFIG_RELEASE, | |
99 target_arch='64', | |
100 factory_type=skia_factory.SkiaFactory, | |
101 environment_variables={'GYP_DEFINES': 'skia_arch_width=64'}, | |
102 compile_warnings_as_errors=True) | |
103 MakeCompileBuilderSet( | |
104 helper=helper, | |
105 scheduler='skia_rel', | |
106 os='Ubuntu12', | |
107 compiler='GCC', | |
108 configuration=skia_factory.CONFIG_DEBUG, | |
109 target_arch='64', | |
110 extra_config='NoGPU', | |
111 factory_type=skia_factory.SkiaFactory, | |
112 environment_variables={'GYP_DEFINES': 'skia_gpu=0 skia_arch_width=64'}, | |
113 compile_warnings_as_errors=True) | |
114 MakeCompileBuilderSet( | |
115 helper=helper, | |
116 scheduler='skia_rel', | |
117 os='Ubuntu12', | |
118 compiler='GCC', | |
119 configuration=skia_factory.CONFIG_RELEASE, | |
120 target_arch='64', | |
borenet
2013/04/24 15:02:38
This field could have a lot more detail, eg. "amd6
| |
121 extra_config='NoGPU', | |
122 factory_type=skia_factory.SkiaFactory, | |
123 environment_variables={'GYP_DEFINES': 'skia_gpu=0 skia_arch_width=64'}, | |
124 compile_warnings_as_errors=True) | |
125 MakeCompileBuilderSet( | |
126 helper=helper, | |
127 scheduler='skia_rel', | |
128 os='Ubuntu12', | |
129 compiler='GCC', | |
130 configuration=skia_factory.CONFIG_DEBUG, | |
131 target_arch='32,64', | |
132 extra_config='NaCl', | |
133 factory_type=nacl_factory.NaClFactory, | |
134 compile_warnings_as_errors=True) | |
135 MakeCompileBuilderSet( | |
136 helper=helper, | |
137 scheduler='skia_rel', | |
138 os='Ubuntu12', | |
139 compiler='GCC', | |
140 configuration=skia_factory.CONFIG_RELEASE, | |
141 target_arch='32,64', | |
142 extra_config='NaCl', | |
143 factory_type=nacl_factory.NaClFactory, | |
144 compile_warnings_as_errors=True) | |
145 | |
146 # Android | |
147 MakeCompileBuilderSet( | |
148 helper=helper, | |
149 scheduler='skia_rel', | |
150 os='Ubuntu12', | |
151 compiler='GCC', | |
152 configuration=skia_factory.CONFIG_DEBUG, | |
153 target_arch='32', | |
154 extra_config='NexusS', | |
borenet
2013/04/24 15:02:38
I chose to specify the device name in extra_config
| |
155 device='nexus_s', | |
156 factory_type=android_factory.AndroidFactory, | |
157 compile_warnings_as_errors=True) | |
158 MakeCompileBuilderSet( | |
159 helper=helper, | |
160 scheduler='skia_rel', | |
161 os='Ubuntu12', | |
162 compiler='GCC', | |
163 configuration=skia_factory.CONFIG_RELEASE, | |
164 target_arch='32', | |
165 extra_config='NexusS', | |
166 device='nexus_s', | |
167 factory_type=android_factory.AndroidFactory, | |
168 compile_warnings_as_errors=True) | |
169 MakeCompileBuilderSet( | |
170 helper=helper, | |
171 scheduler='skia_rel', | |
172 os='Ubuntu12', | |
173 compiler='GCC', | |
174 configuration=skia_factory.CONFIG_DEBUG, | |
175 target_arch='32', | |
176 extra_config='Nexus4', | |
177 device='nexus_4', | |
178 factory_type=android_factory.AndroidFactory, | |
179 compile_warnings_as_errors=True) | |
180 MakeCompileBuilderSet( | |
181 helper=helper, | |
182 scheduler='skia_rel', | |
183 os='Ubuntu12', | |
184 compiler='GCC', | |
185 configuration=skia_factory.CONFIG_RELEASE, | |
186 target_arch='32', | |
187 extra_config='Nexus4', | |
188 device='nexus_4', | |
189 factory_type=android_factory.AndroidFactory, | |
190 compile_warnings_as_errors=True) | |
191 MakeCompileBuilderSet( | |
192 helper=helper, | |
193 scheduler='skia_rel', | |
194 os='Ubuntu12', | |
195 compiler='GCC', | |
196 configuration=skia_factory.CONFIG_DEBUG, | |
197 target_arch='32', | |
198 extra_config='Nexus7', | |
199 device='nexus_7', | |
200 factory_type=android_factory.AndroidFactory, | |
201 compile_warnings_as_errors=True) | |
202 MakeCompileBuilderSet( | |
203 helper=helper, | |
204 scheduler='skia_rel', | |
205 os='Ubuntu12', | |
206 compiler='GCC', | |
207 configuration=skia_factory.CONFIG_RELEASE, | |
208 target_arch='32', | |
209 extra_config='Nexus7', | |
210 device='nexus_7', | |
211 factory_type=android_factory.AndroidFactory, | |
212 compile_warnings_as_errors=True) | |
213 MakeCompileBuilderSet( | |
214 helper=helper, | |
215 scheduler='skia_rel', | |
216 os='Ubuntu12', | |
217 compiler='GCC', | |
218 configuration=skia_factory.CONFIG_DEBUG, | |
219 target_arch='32', | |
220 extra_config='Nexus10', | |
221 device='nexus_10', | |
222 factory_type=android_factory.AndroidFactory, | |
223 compile_warnings_as_errors=True) | |
224 MakeCompileBuilderSet( | |
225 helper=helper, | |
226 scheduler='skia_rel', | |
227 os='Ubuntu12', | |
228 compiler='GCC', | |
229 configuration=skia_factory.CONFIG_RELEASE, | |
230 target_arch='32', | |
231 extra_config='Nexus10', | |
232 device='nexus_10', | |
233 factory_type=android_factory.AndroidFactory, | |
234 compile_warnings_as_errors=True) | |
235 MakeCompileBuilderSet( | |
236 helper=helper, | |
237 scheduler='skia_rel', | |
238 os='Ubuntu12', | |
239 compiler='GCC', | |
240 configuration=skia_factory.CONFIG_DEBUG, | |
241 target_arch='32', | |
242 extra_config='Xoom', | |
243 device='xoom', | |
244 factory_type=android_factory.AndroidFactory, | |
245 compile_warnings_as_errors=True) | |
246 MakeCompileBuilderSet( | |
247 helper=helper, | |
248 scheduler='skia_rel', | |
249 os='Ubuntu12', | |
250 compiler='GCC', | |
251 configuration=skia_factory.CONFIG_RELEASE, | |
252 target_arch='32', | |
253 extra_config='Xoom', | |
254 device='xoom', | |
255 factory_type=android_factory.AndroidFactory, | |
256 compile_warnings_as_errors=True) | |
257 MakeCompileBuilderSet( | |
258 helper=helper, | |
259 scheduler='skia_rel', | |
260 os='Ubuntu12', | |
261 compiler='GCC', | |
262 configuration=skia_factory.CONFIG_DEBUG, | |
263 target_arch='32', | |
264 extra_config='GalaxyNexus', | |
265 device='galaxy_nexus', | |
266 factory_type=android_factory.AndroidFactory, | |
267 compile_warnings_as_errors=True) | |
268 MakeCompileBuilderSet( | |
269 helper=helper, | |
270 scheduler='skia_rel', | |
271 os='Ubuntu12', | |
272 compiler='GCC', | |
273 configuration=skia_factory.CONFIG_RELEASE, | |
274 target_arch='32', | |
275 extra_config='GalaxyNexus', | |
276 device='galaxy_nexus', | |
277 factory_type=android_factory.AndroidFactory, | |
278 compile_warnings_as_errors=True) | |
279 MakeCompileBuilderSet( | |
280 helper=helper, | |
281 scheduler='skia_rel', | |
282 os='Ubuntu12', | |
283 compiler='GCC', | |
284 configuration=skia_factory.CONFIG_DEBUG, | |
285 target_arch='32', | |
286 extra_config='RazrI', | |
287 device='razr_i', | |
288 factory_type=android_factory.AndroidFactory, | |
289 compile_warnings_as_errors=True) | |
290 MakeCompileBuilderSet( | |
291 helper=helper, | |
292 scheduler='skia_rel', | |
293 os='Ubuntu12', | |
294 compiler='GCC', | |
295 configuration=skia_factory.CONFIG_RELEASE, | |
296 target_arch='32', | |
297 extra_config='RazrI', | |
298 device='razr_i', | |
299 factory_type=android_factory.AndroidFactory, | |
300 compile_warnings_as_errors=True) | |
301 | |
302 # ChromeOS | |
303 MakeCompileBuilderSet( | |
304 helper=helper, | |
305 scheduler='skia_rel', | |
306 os='Ubuntu12', | |
307 compiler='GCC', | |
308 configuration=skia_factory.CONFIG_DEBUG, | |
309 target_arch='32', | |
310 extra_config='ChromeOS', | |
311 factory_type=chromeos_factory.ChromeOSFactory, | |
312 environment_variables={'GYP_DEFINES': 'skia_arch_width=32 skia_gpu=0'}, | |
313 compile_warnings_as_errors=True) | |
314 MakeCompileBuilderSet( | |
315 helper=helper, | |
316 scheduler='skia_rel', | |
317 os='Ubuntu12', | |
318 compiler='GCC', | |
319 configuration=skia_factory.CONFIG_RELEASE, | |
320 target_arch='32', | |
321 extra_config='ChromeOS', | |
322 factory_type=chromeos_factory.ChromeOSFactory, | |
323 environment_variables={'GYP_DEFINES': 'skia_arch_width=32 skia_gpu=0'}, | |
324 compile_warnings_as_errors=True) | |
325 | |
326 # Mac | |
327 MakeCompileBuilderSet( | |
328 helper=helper, | |
329 scheduler='skia_rel', | |
330 os='Mac10.6', | |
331 compiler='GCC', | |
332 configuration=skia_factory.CONFIG_DEBUG, | |
333 target_arch='32', | |
334 factory_type=skia_factory.SkiaFactory, | |
335 environment_variables= | |
336 {'GYP_DEFINES': 'skia_osx_sdkroot=macosx10.6 skia_arch_width=32'}, | |
337 compile_warnings_as_errors=True) | |
338 MakeCompileBuilderSet( | |
339 helper=helper, | |
340 scheduler='skia_rel', | |
341 os='Mac10.6', | |
342 compiler='GCC', | |
343 configuration=skia_factory.CONFIG_RELEASE, | |
344 target_arch='32', | |
345 factory_type=skia_factory.SkiaFactory, | |
346 environment_variables= | |
347 {'GYP_DEFINES': 'skia_osx_sdkroot=macosx10.6 skia_arch_width=32'}, | |
348 compile_warnings_as_errors=True) | |
349 MakeCompileBuilderSet( | |
350 helper=helper, | |
351 scheduler='skia_rel', | |
352 os='Mac10.6', | |
353 compiler='GCC', | |
354 configuration=skia_factory.CONFIG_DEBUG, | |
355 target_arch='64', | |
356 factory_type=skia_factory.SkiaFactory, | |
357 environment_variables= | |
358 {'GYP_DEFINES': 'skia_osx_sdkroot=macosx10.6 skia_arch_width=64'}, | |
359 compile_warnings_as_errors=False) | |
360 MakeCompileBuilderSet( | |
361 helper=helper, | |
362 scheduler='skia_rel', | |
363 os='Mac10.6', | |
364 compiler='GCC', | |
365 configuration=skia_factory.CONFIG_RELEASE, | |
366 target_arch='64', | |
367 factory_type=skia_factory.SkiaFactory, | |
368 environment_variables= | |
369 {'GYP_DEFINES': 'skia_osx_sdkroot=macosx10.6 skia_arch_width=64'}, | |
370 compile_warnings_as_errors=False) | |
371 MakeCompileBuilderSet( | |
372 helper=helper, | |
373 scheduler='skia_rel', | |
374 os='Mac10.7', | |
375 compiler='Clang', | |
376 configuration=skia_factory.CONFIG_DEBUG, | |
377 target_arch='32', | |
378 factory_type=skia_factory.SkiaFactory, | |
379 environment_variables={'GYP_DEFINES': 'skia_mesa=1 skia_arch_width=32'}, | |
380 compile_warnings_as_errors=True) | |
381 MakeCompileBuilderSet( | |
382 helper=helper, | |
383 scheduler='skia_rel', | |
384 os='Mac10.7', | |
385 compiler='Clang', | |
386 configuration=skia_factory.CONFIG_RELEASE, | |
387 target_arch='32', | |
388 factory_type=skia_factory.SkiaFactory, | |
389 environment_variables={'GYP_DEFINES': 'skia_mesa=1 skia_arch_width=32'}, | |
390 compile_warnings_as_errors=True) | |
391 MakeCompileBuilderSet( | |
392 helper=helper, | |
393 scheduler='skia_rel', | |
394 os='Mac10.7', | |
395 compiler='Clang', | |
396 configuration=skia_factory.CONFIG_DEBUG, | |
397 target_arch='64', | |
398 factory_type=skia_factory.SkiaFactory, | |
399 environment_variables={'GYP_DEFINES': 'skia_mesa=1 skia_arch_width=64'}, | |
400 compile_warnings_as_errors=False) | |
401 MakeCompileBuilderSet( | |
402 helper=helper, | |
403 scheduler='skia_rel', | |
404 os='Mac10.7', | |
405 compiler='Clang', | |
406 configuration=skia_factory.CONFIG_RELEASE, | |
407 target_arch='64', | |
408 factory_type=skia_factory.SkiaFactory, | |
409 environment_variables={'GYP_DEFINES': 'skia_mesa=1 skia_arch_width=64'}, | |
410 compile_warnings_as_errors=False) | |
411 MakeCompileBuilderSet( | |
412 helper=helper, | |
413 scheduler='skia_rel', | |
414 os='Mac10.8', | |
415 compiler='Clang', | |
416 configuration=skia_factory.CONFIG_DEBUG, | |
417 target_arch='32', | |
418 factory_type=skia_factory.SkiaFactory, | |
419 environment_variables={'GYP_DEFINES': 'skia_arch_width=32'}, | |
420 compile_warnings_as_errors=True) | |
421 MakeCompileBuilderSet( | |
422 helper=helper, | |
423 scheduler='skia_rel', | |
424 os='Mac10.8', | |
425 compiler='Clang', | |
426 configuration=skia_factory.CONFIG_RELEASE, | |
427 target_arch='32', | |
428 factory_type=skia_factory.SkiaFactory, | |
429 environment_variables={'GYP_DEFINES': 'skia_arch_width=32'}, | |
430 compile_warnings_as_errors=True) | |
431 MakeCompileBuilderSet( | |
432 helper=helper, | |
433 scheduler='skia_rel', | |
434 os='Mac10.8', | |
435 compiler='Clang', | |
436 configuration=skia_factory.CONFIG_DEBUG, | |
437 target_arch='64', | |
438 factory_type=skia_factory.SkiaFactory, | |
439 environment_variables={'GYP_DEFINES': 'skia_arch_width=64'}, | |
440 compile_warnings_as_errors=False) | |
441 MakeCompileBuilderSet( | |
442 helper=helper, | |
443 scheduler='skia_rel', | |
444 os='Mac10.8', | |
445 compiler='Clang', | |
446 configuration=skia_factory.CONFIG_RELEASE, | |
447 target_arch='64', | |
448 factory_type=skia_factory.SkiaFactory, | |
449 environment_variables={'GYP_DEFINES': 'skia_arch_width=64'}, | |
450 compile_warnings_as_errors=False) | |
451 | |
452 # Windows | |
453 MakeCompileBuilderSet( | |
454 helper=helper, | |
455 scheduler='skia_rel', | |
456 os='Win7', | |
457 compiler='VS2010', | |
458 configuration=skia_factory.CONFIG_DEBUG, | |
459 target_arch='32', | |
460 factory_type=skia_factory.SkiaFactory, | |
461 environment_variables= | |
462 {'GYP_DEFINES': ('skia_arch_width=32 ' | |
463 'skia_win_debuggers_path=c:/DbgHelp')}, | |
464 compile_warnings_as_errors=True) | |
465 MakeCompileBuilderSet( | |
466 helper=helper, | |
467 scheduler='skia_rel', | |
468 os='Win7', | |
469 compiler='VS2010', | |
470 configuration=skia_factory.CONFIG_RELEASE, | |
471 target_arch='32', | |
472 factory_type=skia_factory.SkiaFactory, | |
473 environment_variables= | |
474 {'GYP_DEFINES': ('skia_arch_width=32 ' | |
475 'skia_win_debuggers_path=c:/DbgHelp')}, | |
476 compile_warnings_as_errors=True) | |
477 MakeCompileBuilderSet( | |
478 helper=helper, | |
479 scheduler='skia_rel', | |
480 os='Win7', | |
481 compiler='VS2010', | |
482 configuration=skia_factory.CONFIG_DEBUG, | |
483 target_arch='64', | |
484 factory_type=skia_factory.SkiaFactory, | |
485 environment_variables= | |
486 {'GYP_DEFINES': ('skia_arch_width=64 ' | |
487 'skia_win_debuggers_path=c:/DbgHelp')}, | |
488 compile_warnings_as_errors=False) | |
489 MakeCompileBuilderSet( | |
490 helper=helper, | |
491 scheduler='skia_rel', | |
492 os='Win7', | |
493 compiler='VS2010', | |
494 configuration=skia_factory.CONFIG_RELEASE, | |
495 target_arch='64', | |
496 factory_type=skia_factory.SkiaFactory, | |
497 environment_variables= | |
498 {'GYP_DEFINES': ('skia_arch_width=64 ' | |
499 'skia_win_debuggers_path=c:/DbgHelp')}, | |
500 compile_warnings_as_errors=False) | |
501 MakeCompileBuilderSet( | |
502 helper=helper, | |
503 scheduler='skia_rel', | |
504 os='Win7', | |
505 compiler='VS2010', | |
506 configuration=skia_factory.CONFIG_DEBUG, | |
507 target_arch='32', | |
508 extra_config='ANGLE', | |
509 factory_type=skia_factory.SkiaFactory, | |
510 environment_variables= | |
511 {'GYP_DEFINES': ('skia_angle=1 skia_arch_width=32 ' | |
512 'skia_win_debuggers_path=c:/DbgHelp')}, | |
513 compile_warnings_as_errors=True) | |
514 MakeCompileBuilderSet( | |
515 helper=helper, | |
516 scheduler='skia_rel', | |
517 os='Win7', | |
518 compiler='VS2010', | |
519 configuration=skia_factory.CONFIG_RELEASE, | |
520 target_arch='32', | |
521 extra_config='ANGLE', | |
522 factory_type=skia_factory.SkiaFactory, | |
523 environment_variables= | |
524 {'GYP_DEFINES': ('skia_angle=1 skia_arch_width=32 ' | |
525 'skia_win_debuggers_path=c:/DbgHelp')}, | |
526 compile_warnings_as_errors=True) | |
527 MakeCompileBuilderSet( | |
528 helper=helper, | |
529 scheduler='skia_rel', | |
530 os='Win7', | |
531 compiler='VS2010', | |
532 configuration=skia_factory.CONFIG_DEBUG, | |
533 target_arch='32', | |
534 extra_config='DirectWrite', | |
535 factory_type=skia_factory.SkiaFactory, | |
536 environment_variables= | |
537 {'GYP_DEFINES': ('skia_directwrite=1 skia_arch_width=32 ' | |
538 'skia_win_debuggers_path=c:/DbgHelp')}, | |
539 compile_warnings_as_errors=True) | |
540 MakeCompileBuilderSet( | |
541 helper=helper, | |
542 scheduler='skia_rel', | |
543 os='Win7', | |
544 compiler='VS2010', | |
545 configuration=skia_factory.CONFIG_RELEASE, | |
546 target_arch='32', | |
547 extra_config='DirectWrite', | |
548 factory_type=skia_factory.SkiaFactory, | |
549 environment_variables= | |
550 {'GYP_DEFINES': ('skia_directwrite=1 skia_arch_width=32 ' | |
551 'skia_win_debuggers_path=c:/DbgHelp')}, | |
552 compile_warnings_as_errors=True) | |
553 | |
554 # iOS | |
555 MakeCompileBuilderSet( | |
556 helper=helper, | |
557 scheduler='skia_rel', | |
558 os='Mac10.7', | |
559 compiler='Clang', | |
560 configuration=skia_factory.CONFIG_DEBUG, | |
561 target_arch='32', | |
562 extra_config='iOS', | |
563 factory_type=ios_factory.iOSFactory, | |
564 environment_variables={'GYP_DEFINES': 'skia_os=ios'}, | |
565 compile_warnings_as_errors=True) | |
566 MakeCompileBuilderSet( | |
567 helper=helper, | |
568 scheduler='skia_rel', | |
569 os='Mac10.7', | |
570 compiler='Clang', | |
571 configuration=skia_factory.CONFIG_RELEASE, | |
572 target_arch='32', | |
573 extra_config='iOS', | |
574 factory_type=ios_factory.iOSFactory, | |
575 environment_variables={'GYP_DEFINES': 'skia_os=ios'}, | |
576 compile_warnings_as_errors=True) | |
577 | |
578 # Builders which run a full set of BuildSteps | |
579 | |
54 # Linux (Ubuntu12) on Shuttle with ATI5770 graphics card | 580 # Linux (Ubuntu12) on Shuttle with ATI5770 graphics card |
55 defaults['category'] = 'Linux' | 581 defaults['category'] = 'Linux' |
56 MakeBuilderSet( | 582 MakeBuilderSet( |
57 helper=helper, | 583 helper=helper, |
58 builder_base_name='Skia_Shuttle_Ubuntu12_ATI5770_Float_%s_64', | 584 os='Ubuntu12', |
585 model='ShuttleA', | |
586 gpu='ATI5770', | |
587 arch_width='64', | |
59 do_upload_results=do_upload_results, | 588 do_upload_results=do_upload_results, |
60 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 589 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
61 environment_variables= | 590 environment_variables={'GYP_DEFINES': 'skia_arch_width=64'}, |
borenet
2013/04/24 15:02:38
skia_scalar=float is never needed. I removed all o
| |
62 {'GYP_DEFINES': 'skia_scalar=float skia_mesa=0 skia_arch_width=64'}, | |
63 gm_image_subdir='base-shuttle_ubuntu12_ati5770', | 591 gm_image_subdir='base-shuttle_ubuntu12_ati5770', |
64 perf_output_basedir=perf_output_basedir_linux) | 592 perf_output_basedir=perf_output_basedir_linux) |
65 MakeBuilderSet( | 593 MakeBuilderSet( |
66 helper=helper, | 594 helper=helper, |
67 builder_base_name='Skia_Shuttle_Ubuntu12_ATI5770_Float_%s_32', | 595 os='Ubuntu12', |
596 model='ShuttleA', | |
597 gpu='ATI5770', | |
598 arch_width='32', | |
68 do_upload_results=do_upload_results, | 599 do_upload_results=do_upload_results, |
69 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 600 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
70 environment_variables= | 601 environment_variables={'GYP_DEFINES': 'skia_arch_width=32'}, |
71 {'GYP_DEFINES': 'skia_scalar=float skia_mesa=0 skia_arch_width=32'}, | |
72 gm_image_subdir='base-shuttle_ubuntu12_ati5770', | 602 gm_image_subdir='base-shuttle_ubuntu12_ati5770', |
73 perf_output_basedir=perf_output_basedir_linux) | 603 perf_output_basedir=perf_output_basedir_linux) |
74 | 604 |
75 # Android (runs on a Linux buildbot slave)... | 605 # Android (runs on a Linux buildbot slave)... |
76 defaults['category'] = 'Android' | 606 defaults['category'] = 'Android' |
77 MakeAndroidBuilderSet( | 607 MakeAndroidBuilderSet( |
78 helper=helper, | 608 helper=helper, |
79 builder_base_name='Skia_NexusS_4-1_Float_%s_32', | 609 os='Android', |
610 gpu='SGX540', | |
611 arch_width='32', | |
80 device='nexus_s', | 612 device='nexus_s', |
81 do_upload_results=do_upload_results, | 613 do_upload_results=do_upload_results, |
82 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 614 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
83 environment_variables={'GYP_DEFINES': 'skia_scalar=float skia_mesa=0'}, | |
84 gm_image_subdir='base-android-nexus-s', | 615 gm_image_subdir='base-android-nexus-s', |
85 perf_output_basedir=perf_output_basedir_linux) | 616 perf_output_basedir=perf_output_basedir_linux) |
86 MakeAndroidBuilderSet( | 617 MakeAndroidBuilderSet( |
87 helper=helper, | 618 helper=helper, |
88 builder_base_name='Skia_Xoom_4-1_Float_%s_32', | 619 os='Android', |
620 gpu='Tegra2', | |
621 arch_width='32', | |
89 device='xoom', | 622 device='xoom', |
90 do_upload_results=do_upload_results, | 623 do_upload_results=do_upload_results, |
91 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 624 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
92 environment_variables={'GYP_DEFINES': 'skia_scalar=float skia_mesa=0'}, | |
93 gm_image_subdir='base-android-xoom', | 625 gm_image_subdir='base-android-xoom', |
94 perf_output_basedir=perf_output_basedir_linux) | 626 perf_output_basedir=perf_output_basedir_linux) |
95 MakeAndroidBuilderSet( | 627 MakeAndroidBuilderSet( |
96 helper=helper, | 628 helper=helper, |
97 builder_base_name='Skia_GalaxyNexus_4-1_Float_%s_32', | 629 os='Android', |
630 gpu='SGX540', | |
631 arch_width='32', | |
98 device='galaxy_nexus', | 632 device='galaxy_nexus', |
99 do_upload_results=do_upload_results, | 633 do_upload_results=do_upload_results, |
100 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 634 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
101 environment_variables={'GYP_DEFINES': 'skia_scalar=float skia_mesa=0'}, | |
102 gm_image_subdir='base-android-galaxy-nexus', | 635 gm_image_subdir='base-android-galaxy-nexus', |
103 perf_output_basedir=perf_output_basedir_linux) | 636 perf_output_basedir=perf_output_basedir_linux) |
104 MakeAndroidBuilderSet( | 637 MakeAndroidBuilderSet( |
105 helper=helper, | 638 helper=helper, |
106 builder_base_name='Skia_Nexus4_4-1_Float_%s_32', | 639 os='Android', |
640 gpu='Adreno320', | |
641 arch_width='32', | |
107 device='nexus_4', | 642 device='nexus_4', |
108 do_upload_results=do_upload_results, | 643 do_upload_results=do_upload_results, |
109 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 644 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
110 environment_variables={'GYP_DEFINES': 'skia_scalar=float skia_mesa=0'}, | |
111 gm_image_subdir='base-android-nexus-4', | 645 gm_image_subdir='base-android-nexus-4', |
112 perf_output_basedir=perf_output_basedir_linux) | 646 perf_output_basedir=perf_output_basedir_linux) |
113 MakeAndroidBuilderSet( | 647 MakeAndroidBuilderSet( |
114 helper=helper, | 648 helper=helper, |
115 builder_base_name='Skia_Nexus7_4-1_Float_%s_32', | 649 os='Android', |
650 gpu='Tegra3', | |
651 arch_width='32', | |
116 device='nexus_7', | 652 device='nexus_7', |
117 do_upload_results=do_upload_results, | 653 do_upload_results=do_upload_results, |
118 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 654 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
119 environment_variables={'GYP_DEFINES': 'skia_scalar=float skia_mesa=0'}, | |
120 gm_image_subdir='base-android-nexus-7', | 655 gm_image_subdir='base-android-nexus-7', |
121 perf_output_basedir=perf_output_basedir_linux) | 656 perf_output_basedir=perf_output_basedir_linux) |
122 MakeAndroidBuilderSet( | 657 MakeAndroidBuilderSet( |
123 helper=helper, | 658 helper=helper, |
124 builder_base_name='Skia_Nexus10_4-1_Float_%s_32', | 659 os='Android', |
660 gpu='MaliT604', | |
661 arch_width='32', | |
125 device='nexus_10', | 662 device='nexus_10', |
126 do_upload_results=do_upload_results, | 663 do_upload_results=do_upload_results, |
127 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 664 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
128 environment_variables={'GYP_DEFINES': 'skia_scalar=float skia_mesa=0'}, | |
129 gm_image_subdir='base-android-nexus-10', | 665 gm_image_subdir='base-android-nexus-10', |
130 perf_output_basedir=perf_output_basedir_linux) | 666 perf_output_basedir=perf_output_basedir_linux) |
131 MakeAndroidBuilderSet( | 667 MakeAndroidBuilderSet( |
132 helper=helper, | 668 helper=helper, |
133 builder_base_name='Skia_RazrI_4-1_Float_%s_32', | 669 os='Android', |
134 device='x86', | 670 gpu='SGX540', |
671 arch_width='32', | |
672 device='razr_i', | |
135 do_upload_results=do_upload_results, | 673 do_upload_results=do_upload_results, |
136 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 674 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
137 environment_variables={'GYP_DEFINES': 'skia_scalar=float skia_mesa=0'}, | |
138 gm_image_subdir='base-android-razr-i', | 675 gm_image_subdir='base-android-razr-i', |
139 perf_output_basedir=perf_output_basedir_linux) | 676 perf_output_basedir=perf_output_basedir_linux) |
140 | 677 |
141 # Mac 10.6 (SnowLeopard) ... | 678 # Mac 10.6 (SnowLeopard) ... |
142 defaults['category'] = 'Mac-10.6' | 679 defaults['category'] = 'Mac-10.6' |
143 MakeBuilderSet( | 680 MakeBuilderSet( |
144 helper=helper, | 681 helper=helper, |
145 builder_base_name='Skia_Mac_Float_%s_32', | 682 os='Mac10.6', |
683 model='MacMini4,1', | |
684 gpu='GeForce320M', | |
685 arch_width='32', | |
146 do_upload_results=do_upload_results, | 686 do_upload_results=do_upload_results, |
147 target_platform=skia_factory.TARGET_PLATFORM_MAC, | 687 target_platform=skia_factory.TARGET_PLATFORM_MAC, |
148 environment_variables= | 688 environment_variables= |
149 {'GYP_DEFINES': ('skia_osx_sdkroot=macosx10.6 skia_scalar=float ' | 689 {'GYP_DEFINES': 'skia_osx_sdkroot=macosx10.6 skia_arch_width=32'}, |
150 'skia_arch_width=32')}, | |
151 gm_image_subdir='base-macmini', | 690 gm_image_subdir='base-macmini', |
152 perf_output_basedir=perf_output_basedir_mac) | 691 perf_output_basedir=perf_output_basedir_mac) |
153 MakeBuilderSet( | 692 MakeBuilderSet( |
154 helper=helper, | 693 helper=helper, |
155 builder_base_name='Skia_Mac_Float_%s_64', | 694 os='Mac10.6', |
695 model='MacMini4,1', | |
696 gpu='GeForce320M', | |
697 arch_width='64', | |
156 do_upload_results=do_upload_results, | 698 do_upload_results=do_upload_results, |
157 target_platform=skia_factory.TARGET_PLATFORM_MAC, | 699 target_platform=skia_factory.TARGET_PLATFORM_MAC, |
158 environment_variables= | 700 environment_variables= |
159 {'GYP_DEFINES': ('skia_osx_sdkroot=macosx10.6 skia_scalar=float ' | 701 {'GYP_DEFINES': 'skia_osx_sdkroot=macosx10.6 skia_arch_width=64'}, |
160 'skia_arch_width=64')}, | |
161 gm_image_subdir='base-macmini', | 702 gm_image_subdir='base-macmini', |
162 perf_output_basedir=perf_output_basedir_mac, | 703 perf_output_basedir=perf_output_basedir_mac) |
163 compile_bot_warnings_as_errors=False) | |
164 | 704 |
165 # Mac 10.7 (Lion) ... | 705 # Mac 10.7 (Lion) ... |
166 defaults['category'] = 'Mac-10.7' | 706 defaults['category'] = 'Mac-10.7' |
167 MakeBuilderSet( | 707 MakeBuilderSet( |
168 helper=helper, | 708 helper=helper, |
169 builder_base_name='Skia_MacMiniLion_Float_%s_32', | 709 os='Mac10.7', |
710 model='MacMini4,1', | |
711 gpu='GeForce320M', | |
712 arch_width='32', | |
170 do_upload_results=do_upload_results, | 713 do_upload_results=do_upload_results, |
171 target_platform=skia_factory.TARGET_PLATFORM_MAC, | 714 target_platform=skia_factory.TARGET_PLATFORM_MAC, |
172 environment_variables= | 715 environment_variables={'GYP_DEFINES': 'skia_mesa=1 skia_arch_width=32'}, |
173 {'GYP_DEFINES': 'skia_scalar=float skia_mesa=1 skia_arch_width=32'}, | |
174 gm_image_subdir='base-macmini-lion-float', | 716 gm_image_subdir='base-macmini-lion-float', |
175 perf_output_basedir=perf_output_basedir_mac) | 717 perf_output_basedir=perf_output_basedir_mac) |
176 MakeBuilderSet( | 718 MakeBuilderSet( |
177 helper=helper, | 719 helper=helper, |
178 builder_base_name='Skia_MacMiniLion_Float_%s_64', | 720 os='Mac10.7', |
721 model='MacMini4,1', | |
722 gpu='GeForce320M', | |
723 arch_width='64', | |
179 do_upload_results=do_upload_results, | 724 do_upload_results=do_upload_results, |
180 target_platform=skia_factory.TARGET_PLATFORM_MAC, | 725 target_platform=skia_factory.TARGET_PLATFORM_MAC, |
181 environment_variables= | 726 environment_variables={'GYP_DEFINES': 'skia_mesa=1 skia_arch_width=64'}, |
182 {'GYP_DEFINES': 'skia_scalar=float skia_mesa=1 skia_arch_width=64'}, | |
183 gm_image_subdir='base-macmini-lion-float', | 727 gm_image_subdir='base-macmini-lion-float', |
184 perf_output_basedir=perf_output_basedir_mac, | 728 perf_output_basedir=perf_output_basedir_mac) |
185 compile_bot_warnings_as_errors=False) | |
186 | 729 |
187 # Mac 10.8 (Mountain Lion) ... | 730 # Mac 10.8 (Mountain Lion) ... |
188 defaults['category'] = 'Mac-10.8' | 731 defaults['category'] = 'Mac-10.8' |
189 MakeBuilderSet( | 732 MakeBuilderSet( |
190 helper=helper, | 733 helper=helper, |
191 builder_base_name='Skia_MacMini_10_8_Float_%s_32', | 734 os='Mac10.8', |
735 model='MacMini4,1', | |
736 gpu='GeForce320M', | |
737 arch_width='32', | |
192 do_upload_results=do_upload_results, | 738 do_upload_results=do_upload_results, |
193 target_platform=skia_factory.TARGET_PLATFORM_MAC, | 739 target_platform=skia_factory.TARGET_PLATFORM_MAC, |
194 environment_variables= | 740 environment_variables={'GYP_DEFINES': 'skia_arch_width=32'}, |
195 {'GYP_DEFINES': 'skia_scalar=float skia_arch_width=32'}, | |
196 gm_image_subdir='base-macmini-10_8', | 741 gm_image_subdir='base-macmini-10_8', |
197 perf_output_basedir=perf_output_basedir_mac) | 742 perf_output_basedir=perf_output_basedir_mac) |
198 MakeBuilderSet( | 743 MakeBuilderSet( |
199 helper=helper, | 744 helper=helper, |
200 builder_base_name='Skia_MacMini_10_8_Float_%s_64', | 745 os='Mac10.8', |
746 model='MacMini4,1', | |
747 gpu='GeForce320M', | |
748 arch_width='64', | |
201 do_upload_results=do_upload_results, | 749 do_upload_results=do_upload_results, |
202 target_platform=skia_factory.TARGET_PLATFORM_MAC, | 750 target_platform=skia_factory.TARGET_PLATFORM_MAC, |
203 environment_variables= | 751 environment_variables={'GYP_DEFINES': 'skia_arch_width=64'}, |
204 {'GYP_DEFINES': 'skia_scalar=float skia_arch_width=64'}, | |
205 gm_image_subdir='base-macmini-10_8', | 752 gm_image_subdir='base-macmini-10_8', |
206 perf_output_basedir=perf_output_basedir_mac, | 753 perf_output_basedir=perf_output_basedir_mac) |
207 compile_bot_warnings_as_errors=False) | |
208 | 754 |
209 # Windows7 running on Shuttle PC with Intel Core i7-2600 with on-CPU graphics | 755 # Windows7 running on Shuttle PC with Intel Core i7-2600 with on-CPU graphics |
210 defaults['category'] = 'Win7' | 756 defaults['category'] = 'Win7' |
211 MakeBuilderSet( | 757 MakeBuilderSet( |
212 helper=helper, | 758 helper=helper, |
213 builder_base_name='Skia_Shuttle_Win7_Intel_Float_%s_32', | 759 os='Win7', |
760 model='ShuttleA', | |
761 gpu='HD2000', | |
762 arch_width='32', | |
214 do_upload_results=do_upload_results, | 763 do_upload_results=do_upload_results, |
215 target_platform=skia_factory.TARGET_PLATFORM_WIN32, | 764 target_platform=skia_factory.TARGET_PLATFORM_WIN32, |
216 environment_variables= | 765 environment_variables= |
217 {'GYP_DEFINES': ('skia_scalar=float skia_arch_width=32 ' | 766 {'GYP_DEFINES': ('skia_arch_width=32 ' |
218 'skia_win_debuggers_path=c:/DbgHelp')}, | 767 'skia_win_debuggers_path=c:/DbgHelp')}, |
219 gm_image_subdir='base-shuttle-win7-intel-float', | 768 gm_image_subdir='base-shuttle-win7-intel-float', |
220 perf_output_basedir=perf_output_basedir_windows) | 769 perf_output_basedir=perf_output_basedir_windows) |
221 MakeBuilderSet( | 770 MakeBuilderSet( |
222 helper=helper, | 771 helper=helper, |
223 builder_base_name='Skia_Shuttle_Win7_Intel_Float_%s_64', | 772 os='Win7', |
773 model='ShuttleA', | |
774 gpu='HD2000', | |
775 arch_width='64', | |
224 do_upload_results=do_upload_results, | 776 do_upload_results=do_upload_results, |
225 target_platform=skia_factory.TARGET_PLATFORM_WIN32, | 777 target_platform=skia_factory.TARGET_PLATFORM_WIN32, |
226 environment_variables= | 778 environment_variables= |
227 {'GYP_DEFINES': ('skia_scalar=float skia_arch_width=64 ' | 779 {'GYP_DEFINES': ('skia_scalar=float skia_arch_width=64 ' |
228 'skia_win_debuggers_path=c:/DbgHelp')}, | 780 'skia_win_debuggers_path=c:/DbgHelp')}, |
229 gm_image_subdir='base-shuttle-win7-intel-float', | 781 gm_image_subdir='base-shuttle-win7-intel-float', |
230 perf_output_basedir=perf_output_basedir_windows, | 782 perf_output_basedir=perf_output_basedir_windows) |
231 compile_bot_warnings_as_errors=False) | |
232 | 783 |
233 # Special-purpose Win7 builders | 784 # Special-purpose Win7 builders |
234 defaults['category'] = 'Win7-Special' | 785 defaults['category'] = 'Win7-Special' |
235 MakeBuilderSet( | 786 MakeBuilderSet( |
236 helper=helper, | 787 helper=helper, |
237 builder_base_name='Skia_Shuttle_Win7_Intel_Float_ANGLE_%s_32', | 788 os='Win7', |
789 model='ShuttleA', | |
790 gpu='HD2000', | |
791 arch_width='32', | |
792 extra_config='ANGLE', | |
238 do_upload_results=do_upload_results, | 793 do_upload_results=do_upload_results, |
239 target_platform=skia_factory.TARGET_PLATFORM_WIN32, | 794 target_platform=skia_factory.TARGET_PLATFORM_WIN32, |
240 environment_variables= | 795 environment_variables= |
241 {'GYP_DEFINES': ('skia_scalar=float skia_angle=1 skia_arch_width=32 ' | 796 {'GYP_DEFINES': ('skia_angle=1 skia_arch_width=32 ' |
242 'skia_win_debuggers_path=c:/DbgHelp')}, | 797 'skia_win_debuggers_path=c:/DbgHelp')}, |
243 gm_image_subdir='base-shuttle-win7-intel-angle', | 798 gm_image_subdir='base-shuttle-win7-intel-angle', |
244 perf_output_basedir=perf_output_basedir_windows, | 799 perf_output_basedir=perf_output_basedir_windows, |
245 gm_args=['--config', 'angle'], | 800 gm_args=['--config', 'angle'], |
246 bench_args=['--config', 'ANGLE'], | 801 bench_args=['--config', 'ANGLE'], |
247 bench_pictures_cfg='angle') | 802 bench_pictures_cfg='angle') |
248 MakeBuilderSet( | 803 MakeBuilderSet( |
249 helper=helper, | 804 helper=helper, |
250 builder_base_name='Skia_Shuttle_Win7_Intel_Float_DirectWrite_%s_32', | 805 os='Win7', |
806 model='ShuttleA', | |
807 gpu='HD2000', | |
808 arch_width='32', | |
809 extra_config='DirectWrite', | |
251 do_upload_results=do_upload_results, | 810 do_upload_results=do_upload_results, |
252 target_platform=skia_factory.TARGET_PLATFORM_WIN32, | 811 target_platform=skia_factory.TARGET_PLATFORM_WIN32, |
253 environment_variables= | 812 environment_variables= |
254 {'GYP_DEFINES': | 813 {'GYP_DEFINES': ('skia_directwrite=1 skia_arch_width=32 ' |
255 ('skia_scalar=float skia_directwrite=1 skia_arch_width=32 ' | 814 'skia_win_debuggers_path=c:/DbgHelp')}, |
256 'skia_win_debuggers_path=c:/DbgHelp')}, | |
257 gm_image_subdir='base-shuttle-win7-intel-directwrite', | 815 gm_image_subdir='base-shuttle-win7-intel-directwrite', |
258 perf_output_basedir=perf_output_basedir_windows) | 816 perf_output_basedir=perf_output_basedir_windows) |
259 | 817 |
260 defaults['category'] = 'iOS' | 818 defaults['category'] = 'iOS' |
261 MakeIOSBuilderSet( | 819 MakeIOSBuilderSet( |
262 helper=helper, | 820 helper=helper, |
263 builder_base_name='Skia_iOS_%s_32', | 821 os='iOS', |
822 model='iPhone', | |
823 gpu='SGX543MP3', | |
824 arch_width='32', | |
264 do_upload_results=do_upload_results, | 825 do_upload_results=do_upload_results, |
265 target_platform=skia_factory.TARGET_PLATFORM_MAC, | 826 target_platform=skia_factory.TARGET_PLATFORM_MAC, |
266 environment_variables={'GYP_DEFINES': 'skia_os=ios'}, | 827 environment_variables={'GYP_DEFINES': 'skia_os=ios'}, |
267 gm_image_subdir=None, | 828 gm_image_subdir=None, |
268 perf_output_basedir=None, | 829 perf_output_basedir=None, |
269 do_debug=False, | 830 do_debug=False, |
270 do_release=False, | 831 do_release=False, |
271 do_bench=False) | 832 do_bench=False) |
borenet
2013/04/24 15:02:38
This MakeBuilderSet is no longer needed, since iOS
| |
272 | 833 |
273 # House Keeping | 834 # House Keeping |
274 defaults['category'] = ' Housekeeping' | 835 defaults['category'] = ' Housekeeping' |
275 MakeHousekeeperBuilderSet( | 836 MakeHousekeeperBuilderSet( |
276 helper=helper, | 837 helper=helper, |
277 do_trybots=True, | 838 do_trybots=True, |
278 do_upload_results=do_upload_results) | 839 do_upload_results=do_upload_results) |
279 | 840 |
280 # "Special" bots, running on Linux | 841 # "Special" bots, running on Linux |
281 defaults['category'] = 'Linux-Special' | 842 defaults['category'] = 'Linux-Special' |
282 MakeBuilderSet( | 843 MakeBuilderSet( |
283 helper=helper, | 844 helper=helper, |
284 builder_base_name='Skia_Linux_NoGPU_%s_32', | 845 os='Ubuntu12', |
846 model='ShuttleA', | |
847 gpu='NoGPU', | |
848 arch_width='64', | |
285 do_upload_results=do_upload_results, | 849 do_upload_results=do_upload_results, |
286 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 850 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
287 environment_variables= | 851 environment_variables={'GYP_DEFINES': 'skia_gpu=0 skia_arch_width=64'}, |
288 {'GYP_DEFINES': 'skia_scalar=float skia_gpu=0 skia_arch_width=64'}, | |
289 gm_image_subdir='base-shuttle_ubuntu12_ati5770', | 852 gm_image_subdir='base-shuttle_ubuntu12_ati5770', |
290 perf_output_basedir=None, # no perf measurement for debug builds | 853 perf_output_basedir=None, # no perf measurement for debug builds |
291 bench_pictures_cfg='no_gpu', | 854 bench_pictures_cfg='no_gpu', |
292 do_release=False, | 855 do_release=False, |
293 do_bench=False) | 856 do_bench=False) |
294 | 857 |
295 MakeNaClBuilderSet( | 858 MakeNaClBuilderSet( |
296 helper=helper, | 859 helper=helper, |
297 builder_base_name='Skia_Shuttle_Ubuntu12_NaCl_%s', | 860 os='Ubuntu12', |
861 model='ShuttleA', | |
862 gpu='ATI5770', | |
863 arch_width='32,64', | |
864 extra_config='NaCl', | |
298 do_upload_results=do_upload_results, | 865 do_upload_results=do_upload_results, |
299 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 866 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
borenet
2013/04/24 15:02:38
Looks like I missed adding target_platform for the
| |
300 gm_image_subdir=None, | 867 gm_image_subdir=None, |
301 perf_output_basedir=None, | 868 perf_output_basedir=None, |
302 do_debug=False, | 869 do_debug=False, |
303 do_release=False, | 870 do_release=False, |
304 do_bench=False) | 871 do_bench=False) |
borenet
2013/04/24 15:02:38
This MakeBuilderSet is no longer needed, since NaC
| |
305 | 872 |
306 # Chrome OS | 873 # Chrome OS |
307 defaults['category'] = 'ChromeOS' | 874 defaults['category'] = 'ChromeOS' |
308 MakeChromeOSBuilderSet( | 875 MakeChromeOSBuilderSet( |
309 helper=helper, | 876 helper=helper, |
310 builder_base_name='Skia_ChromeOS_Alex_%s_32', | 877 os='ChromeOS', |
878 model='Alex', | |
879 gpu='GMA3150', | |
880 arch_width='32', | |
311 do_upload_results=do_upload_results, | 881 do_upload_results=do_upload_results, |
312 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 882 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
313 environment_variables= | 883 environment_variables={'GYP_DEFINES': 'skia_arch_width=32 skia_gpu=0'}, |
314 {'GYP_DEFINES': 'skia_arch_width=32 skia_gpu=0'}, | |
315 gm_image_subdir=None, | 884 gm_image_subdir=None, |
316 perf_output_basedir=perf_output_basedir_linux, | 885 perf_output_basedir=perf_output_basedir_linux, |
317 bench_pictures_cfg='no_gpu') | 886 bench_pictures_cfg='no_gpu') |
318 | 887 |
319 return helper.Update(c) | 888 return helper.Update(c) |
OLD | NEW |