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

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

Issue 111363002: Add chromedriver_unittests to masters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « masters/master.tryserver.chromium/master.cfg ('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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 if R('base_unittests_br'): 344 if R('base_unittests_br'):
345 f.AddBuildrunnerGTest('base_unittests', fp) 345 f.AddBuildrunnerGTest('base_unittests', fp)
346 if R('cacheinvalidation_unittests'): 346 if R('cacheinvalidation_unittests'):
347 f.AddGTestTestStep('cacheinvalidation_unittests', fp) 347 f.AddGTestTestStep('cacheinvalidation_unittests', fp)
348 if R('cacheinvalidation_br'): 348 if R('cacheinvalidation_br'):
349 f.AddBuildrunnerGTest('cacheinvalidation_unittests', fp) 349 f.AddBuildrunnerGTest('cacheinvalidation_unittests', fp)
350 if R('cc_unittests'): 350 if R('cc_unittests'):
351 f.AddGTestTestStep('cc_unittests', fp) 351 f.AddGTestTestStep('cc_unittests', fp)
352 if R('cc_unittests_br'): 352 if R('cc_unittests_br'):
353 f.AddBuildrunnerGTest('cc_unittests', fp) 353 f.AddBuildrunnerGTest('cc_unittests', fp)
354 if R('chromedriver_unittests'):
355 f.AddGTestTestStep('chromedriver_unittests', fp)
356 if R('chromedriver_unittests_br'):
357 f.AddBuildrunnerGTest('chromedriver_unittests', fp)
354 if R('chromedriver2_unittests'): 358 if R('chromedriver2_unittests'):
355 f.AddGTestTestStep('chromedriver2_unittests', fp) 359 f.AddGTestTestStep('chromedriver2_unittests', fp)
356 if R('chromedriver2_unittests_br'): 360 if R('chromedriver2_unittests_br'):
357 f.AddBuildrunnerGTest('chromedriver2_unittests', fp) 361 f.AddBuildrunnerGTest('chromedriver2_unittests', fp)
358 if R('chromeos_unittests'): 362 if R('chromeos_unittests'):
359 f.AddGTestTestStep('chromeos_unittests', fp) 363 f.AddGTestTestStep('chromeos_unittests', fp)
360 if R('chromeos_unittests_br'): 364 if R('chromeos_unittests_br'):
361 f.AddBuildrunnerGTest('chromeos_unittests', fp) 365 f.AddBuildrunnerGTest('chromeos_unittests', fp)
362 if R('chrome_elf_unittests'): 366 if R('chrome_elf_unittests'):
363 f.AddGTestTestStep('chrome_elf_unittests', fp) 367 f.AddGTestTestStep('chrome_elf_unittests', fp)
(...skipping 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after
1405 mode=None, slave_type='BuilderTester', options=None, 1409 mode=None, slave_type='BuilderTester', options=None,
1406 compile_timeout=1200, build_url=None, project=None, 1410 compile_timeout=1200, build_url=None, project=None,
1407 factory_properties=None): 1411 factory_properties=None):
1408 # Make sure the solution is not already there. 1412 # Make sure the solution is not already there.
1409 if 'cros_deps' not in [s.name for s in self._solutions]: 1413 if 'cros_deps' not in [s.name for s in self._solutions]:
1410 self._solutions.append(gclient_factory.GClientSolution( 1414 self._solutions.append(gclient_factory.GClientSolution(
1411 config.Master.trunk_url + '/src/tools/cros.DEPS', name='cros_deps')) 1415 config.Master.trunk_url + '/src/tools/cros.DEPS', name='cros_deps'))
1412 return self.ChromiumFactory(target, clobber, tests, mode, slave_type, 1416 return self.ChromiumFactory(target, clobber, tests, mode, slave_type,
1413 options, compile_timeout, build_url, project, 1417 options, compile_timeout, build_url, project,
1414 factory_properties) 1418 factory_properties)
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium/master.cfg ('k') | scripts/slave/kill_processes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698