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 """Utility class to build the chromium master BuildFactory's. | 5 """Utility class to build the chromium master BuildFactory's. |
6 | 6 |
7 Based on gclient_factory.py and adds chromium-specific steps.""" | 7 Based on gclient_factory.py and adds chromium-specific steps.""" |
8 | 8 |
9 import re | 9 import re |
10 | 10 |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 if R('telemetry_perf_unittests_br'): | 465 if R('telemetry_perf_unittests_br'): |
466 f.AddBuildrunnerTelemetryPerfUnitTests() | 466 f.AddBuildrunnerTelemetryPerfUnitTests() |
467 if R('ui_unittests'): | 467 if R('ui_unittests'): |
468 f.AddGTestTestStep('ui_unittests', fp) | 468 f.AddGTestTestStep('ui_unittests', fp) |
469 if R('ui_unittests_br'): | 469 if R('ui_unittests_br'): |
470 f.AddBuildrunnerGTest('ui_unittests', fp) | 470 f.AddBuildrunnerGTest('ui_unittests', fp) |
471 if R('views', 'views_unittests'): | 471 if R('views', 'views_unittests'): |
472 f.AddGTestTestStep('views_unittests', fp) | 472 f.AddGTestTestStep('views_unittests', fp) |
473 if R('views_br'): | 473 if R('views_br'): |
474 f.AddBuildrunnerGTest('views_unittests', fp) | 474 f.AddBuildrunnerGTest('views_unittests', fp) |
| 475 if R('wm_unittests_br'): |
| 476 f.AddBuildrunnerGTest('wm_unittests', fp) |
475 if R('aura'): | 477 if R('aura'): |
476 f.AddGTestTestStep('aura_unittests', fp) | 478 f.AddGTestTestStep('aura_unittests', fp) |
477 if R('aura_br'): | 479 if R('aura_br'): |
478 f.AddBuildrunnerGTest('aura_unittests', fp) | 480 f.AddBuildrunnerGTest('aura_unittests', fp) |
479 if R('aura_shell') or R('ash') or R('ash_unittests'): | 481 if R('aura_shell') or R('ash') or R('ash_unittests'): |
480 f.AddGTestTestStep('ash_unittests', fp) | 482 f.AddGTestTestStep('ash_unittests', fp) |
481 if R('aura_shell_br', 'ash_br', 'ash_unittests_br'): | 483 if R('aura_shell_br', 'ash_br', 'ash_unittests_br'): |
482 f.AddBuildrunnerGTest('ash_unittests', fp) | 484 f.AddBuildrunnerGTest('ash_unittests', fp) |
483 if R('app_list_unittests'): | 485 if R('app_list_unittests'): |
484 f.AddGTestTestStep('app_list_unittests', fp) | 486 f.AddGTestTestStep('app_list_unittests', fp) |
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1369 options, compile_timeout, build_url, project, | 1371 options, compile_timeout, build_url, project, |
1370 factory_properties) | 1372 factory_properties) |
1371 | 1373 |
1372 def ChromiumOSASANFactory(self, target='Release', clobber=False, tests=None, | 1374 def ChromiumOSASANFactory(self, target='Release', clobber=False, tests=None, |
1373 mode=None, slave_type='BuilderTester', options=None, | 1375 mode=None, slave_type='BuilderTester', options=None, |
1374 compile_timeout=1200, build_url=None, project=None, | 1376 compile_timeout=1200, build_url=None, project=None, |
1375 factory_properties=None): | 1377 factory_properties=None): |
1376 return self.ChromiumFactory(target, clobber, tests, mode, slave_type, | 1378 return self.ChromiumFactory(target, clobber, tests, mode, slave_type, |
1377 options, compile_timeout, build_url, project, | 1379 options, compile_timeout, build_url, project, |
1378 factory_properties) | 1380 factory_properties) |
OLD | NEW |