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

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

Issue 1237693003: Prepare to run setup_unittests on win bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 5 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 | « scripts/master/factory/chromium_commands.py ('k') | scripts/slave/kill_processes.py » ('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) 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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 if R('ash_browsertests'): 535 if R('ash_browsertests'):
536 ash_fp = fp.copy() 536 ash_fp = fp.copy()
537 ash_fp['browser_tests_extra_options'] = ['--ash-browsertests'] 537 ash_fp['browser_tests_extra_options'] = ['--ash-browsertests']
538 f.AddBuildrunnerBrowserTests(ash_fp) 538 f.AddBuildrunnerBrowserTests(ash_fp)
539 539
540 if self._target_platform == 'win32': 540 if self._target_platform == 'win32':
541 if R('installer_util_unittests'): 541 if R('installer_util_unittests'):
542 f.AddGTestTestStep('installer_util_unittests', fp) 542 f.AddGTestTestStep('installer_util_unittests', fp)
543 if R('installer_util_unittests_br'): 543 if R('installer_util_unittests_br'):
544 f.AddBuildrunnerGTest('installer_util_unittests', fp) 544 f.AddBuildrunnerGTest('installer_util_unittests', fp)
545 if R('setup_unittests'):
546 f.AddGTestTestStep('setup_unittests', fp)
547 if R('setup_unittests_br'):
548 f.AddBuildrunnerGTest('setup_unittests', fp)
545 549
546 if R('installer'): 550 if R('installer'):
547 f.AddInstallerTests(fp) 551 f.AddInstallerTests(fp)
548 if R('installer_br'): 552 if R('installer_br'):
549 f.AddBuildrunnerInstallerTests(fp) 553 f.AddBuildrunnerInstallerTests(fp)
550 554
551 if R('test_installer'): 555 if R('test_installer'):
552 f.AddMiniInstallerTestStep(fp) 556 f.AddMiniInstallerTestStep(fp)
553 if R('test_installer_br'): 557 if R('test_installer_br'):
554 f.AddBuildrunnerMiniInstallerTestStep(fp) 558 f.AddBuildrunnerMiniInstallerTestStep(fp)
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
1108 options, compile_timeout, build_url, project, 1112 options, compile_timeout, build_url, project,
1109 factory_properties) 1113 factory_properties)
1110 1114
1111 def ChromiumOSASANFactory(self, target='Release', clobber=False, tests=None, 1115 def ChromiumOSASANFactory(self, target='Release', clobber=False, tests=None,
1112 mode=None, slave_type='BuilderTester', options=None, 1116 mode=None, slave_type='BuilderTester', options=None,
1113 compile_timeout=1200, build_url=None, project=None, 1117 compile_timeout=1200, build_url=None, project=None,
1114 factory_properties=None): 1118 factory_properties=None):
1115 return self.ChromiumFactory(target, clobber, tests, mode, slave_type, 1119 return self.ChromiumFactory(target, clobber, tests, mode, slave_type,
1116 options, compile_timeout, build_url, project, 1120 options, compile_timeout, build_url, project,
1117 factory_properties) 1121 factory_properties)
OLDNEW
« no previous file with comments | « scripts/master/factory/chromium_commands.py ('k') | scripts/slave/kill_processes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698