| 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 os | 9 import os |
| 10 import re | 10 import re |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 if R('installer_util_unittests'): | 509 if R('installer_util_unittests'): |
| 510 f.AddGTestTestStep('installer_util_unittests', fp) | 510 f.AddGTestTestStep('installer_util_unittests', fp) |
| 511 if R('installer_util_unittests_br'): | 511 if R('installer_util_unittests_br'): |
| 512 f.AddBuildrunnerGTest('installer_util_unittests', fp) | 512 f.AddBuildrunnerGTest('installer_util_unittests', fp) |
| 513 | 513 |
| 514 if R('installer'): | 514 if R('installer'): |
| 515 f.AddInstallerTests(fp) | 515 f.AddInstallerTests(fp) |
| 516 if R('installer_br'): | 516 if R('installer_br'): |
| 517 f.AddBuildrunnerInstallerTests(fp) | 517 f.AddBuildrunnerInstallerTests(fp) |
| 518 | 518 |
| 519 if R('mini_installer'): |
| 520 f.AddMiniInstallerTestStep(fp) |
| 521 |
| 519 # WebKit-related tests: | 522 # WebKit-related tests: |
| 520 if R('webkit_compositor_bindings_unittests'): | 523 if R('webkit_compositor_bindings_unittests'): |
| 521 f.AddGTestTestStep('webkit_compositor_bindings_unittests', fp) | 524 f.AddGTestTestStep('webkit_compositor_bindings_unittests', fp) |
| 522 if R('webkit_compositor_bindings_unittests_br'): | 525 if R('webkit_compositor_bindings_unittests_br'): |
| 523 f.AddBuildrunnerGTest('webkit_compositor_bindings_unittests', fp) | 526 f.AddBuildrunnerGTest('webkit_compositor_bindings_unittests', fp) |
| 524 if R('webkit_unit_tests'): | 527 if R('webkit_unit_tests'): |
| 525 f.AddGTestTestStep('webkit_unit_tests', fp) | 528 f.AddGTestTestStep('webkit_unit_tests', fp) |
| 526 if R('webkit_unit_br'): | 529 if R('webkit_unit_br'): |
| 527 f.AddBuildrunnerGTest('webkit_unit_tests', fp) | 530 f.AddBuildrunnerGTest('webkit_unit_tests', fp) |
| 528 if R('wtf_unittests'): | 531 if R('wtf_unittests'): |
| (...skipping 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1444 build_dir=web_build_dir) | 1447 build_dir=web_build_dir) |
| 1445 chromium_cmd_obj.AddChromebotServer(factory_properties) | 1448 chromium_cmd_obj.AddChromebotServer(factory_properties) |
| 1446 chromium_cmd_obj.AddReliabilityTests(client_os) | 1449 chromium_cmd_obj.AddReliabilityTests(client_os) |
| 1447 elif slave_type == 'ChromebotClient': | 1450 elif slave_type == 'ChromebotClient': |
| 1448 chromium_cmd_obj.AddGetBuildForChromebot(client_os, | 1451 chromium_cmd_obj.AddGetBuildForChromebot(client_os, |
| 1449 extract=True, | 1452 extract=True, |
| 1450 build_url=build_url) | 1453 build_url=build_url) |
| 1451 chromium_cmd_obj.AddChromebotClient(factory_properties) | 1454 chromium_cmd_obj.AddChromebotClient(factory_properties) |
| 1452 | 1455 |
| 1453 return factory | 1456 return factory |
| OLD | NEW |