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

Side by Side Diff: scripts/master/factory/chromium_factory.py

Issue 23591008: Add mini_installer tests to the Chromium build infrastructure. (Closed) Base URL: http://src.chromium.org/chrome/trunk/tools/build/
Patch Set: Address csharp's comments. Created 7 years, 3 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 (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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 if R('dom_checker'): 503 if R('dom_checker'):
504 f.AddDomCheckerTests() 504 f.AddDomCheckerTests()
505 if R('dom_checker_br'): 505 if R('dom_checker_br'):
506 f.AddBuildrunnerDomCheckerTests() 506 f.AddBuildrunnerDomCheckerTests()
507 507
508 if self._target_platform == 'win32': 508 if self._target_platform == 'win32':
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 if R('mini_installer'):
514 f.AddMiniInstallerTestStep(fp)
513 515
514 if R('installer'): 516 if R('installer'):
515 f.AddInstallerTests(fp) 517 f.AddInstallerTests(fp)
516 if R('installer_br'): 518 if R('installer_br'):
517 f.AddBuildrunnerInstallerTests(fp) 519 f.AddBuildrunnerInstallerTests(fp)
518 520
519 # WebKit-related tests: 521 # WebKit-related tests:
520 if R('webkit_compositor_bindings_unittests'): 522 if R('webkit_compositor_bindings_unittests'):
521 f.AddGTestTestStep('webkit_compositor_bindings_unittests', fp) 523 f.AddGTestTestStep('webkit_compositor_bindings_unittests', fp)
522 if R('webkit_compositor_bindings_unittests_br'): 524 if R('webkit_compositor_bindings_unittests_br'):
(...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after
1418 build_dir=web_build_dir) 1420 build_dir=web_build_dir)
1419 chromium_cmd_obj.AddChromebotServer(factory_properties) 1421 chromium_cmd_obj.AddChromebotServer(factory_properties)
1420 chromium_cmd_obj.AddReliabilityTests(client_os) 1422 chromium_cmd_obj.AddReliabilityTests(client_os)
1421 elif slave_type == 'ChromebotClient': 1423 elif slave_type == 'ChromebotClient':
1422 chromium_cmd_obj.AddGetBuildForChromebot(client_os, 1424 chromium_cmd_obj.AddGetBuildForChromebot(client_os,
1423 extract=True, 1425 extract=True,
1424 build_url=build_url) 1426 build_url=build_url)
1425 chromium_cmd_obj.AddChromebotClient(factory_properties) 1427 chromium_cmd_obj.AddChromebotClient(factory_properties)
1426 1428
1427 return factory 1429 return factory
OLDNEW
« scripts/master/factory/chromium_commands.py ('K') | « scripts/master/factory/chromium_commands.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698