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

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

Issue 1773473004: Remove references to mojo_public_environment_unittests from build/ (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | scripts/slave/recipe_modules/isolate/resources/compare_build_artifacts.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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 if R('device_unittests_br'): 386 if R('device_unittests_br'):
387 f.AddBuildrunnerGTest('device_unittests', fp) 387 f.AddBuildrunnerGTest('device_unittests', fp)
388 if R('media', 'media_unittests'): 388 if R('media', 'media_unittests'):
389 f.AddGTestTestStep('media_unittests', fp) 389 f.AddGTestTestStep('media_unittests', fp)
390 if R('media_br'): 390 if R('media_br'):
391 f.AddBuildrunnerGTest('media_unittests', fp) 391 f.AddBuildrunnerGTest('media_unittests', fp)
392 if R('mojo_common_unittests'): 392 if R('mojo_common_unittests'):
393 f.AddBuildrunnerGTest('mojo_common_unittests', fp) 393 f.AddBuildrunnerGTest('mojo_common_unittests', fp)
394 if R('mojo_public_bindings_unittests'): 394 if R('mojo_public_bindings_unittests'):
395 f.AddBuildrunnerGTest('mojo_public_bindings_unittests', fp) 395 f.AddBuildrunnerGTest('mojo_public_bindings_unittests', fp)
396 if R('mojo_public_environment_unittests'):
397 f.AddBuildrunnerGTest('mojo_public_environment_unittests', fp)
398 if R('mojo_public_system_unittests'): 396 if R('mojo_public_system_unittests'):
399 f.AddBuildrunnerGTest('mojo_public_system_unittests', fp) 397 f.AddBuildrunnerGTest('mojo_public_system_unittests', fp)
400 if R('mojo_public_utility_unittests'): 398 if R('mojo_public_utility_unittests'):
401 f.AddBuildrunnerGTest('mojo_public_utility_unittests', fp) 399 f.AddBuildrunnerGTest('mojo_public_utility_unittests', fp)
402 if R('mojo_service_manager_unittests'): 400 if R('mojo_service_manager_unittests'):
403 f.AddBuildrunnerGTest('mojo_service_manager_unittests', fp) 401 f.AddBuildrunnerGTest('mojo_service_manager_unittests', fp)
404 if R('mojo_system_unittests'): 402 if R('mojo_system_unittests'):
405 f.AddBuildrunnerGTest('mojo_system_unittests', fp) 403 f.AddBuildrunnerGTest('mojo_system_unittests', fp)
406 if R('nacl_loader_unittests'): 404 if R('nacl_loader_unittests'):
407 f.AddGTestTestStep('nacl_loader_unittests', fp) 405 f.AddGTestTestStep('nacl_loader_unittests', fp)
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
947 options, compile_timeout, build_url, project, 945 options, compile_timeout, build_url, project,
948 factory_properties) 946 factory_properties)
949 947
950 def ChromiumOSASANFactory(self, target='Release', clobber=False, tests=None, 948 def ChromiumOSASANFactory(self, target='Release', clobber=False, tests=None,
951 mode=None, slave_type='BuilderTester', options=None, 949 mode=None, slave_type='BuilderTester', options=None,
952 compile_timeout=1200, build_url=None, project=None, 950 compile_timeout=1200, build_url=None, project=None,
953 factory_properties=None): 951 factory_properties=None):
954 return self.ChromiumFactory(target, clobber, tests, mode, slave_type, 952 return self.ChromiumFactory(target, clobber, tests, mode, slave_type,
955 options, compile_timeout, build_url, project, 953 options, compile_timeout, build_url, project,
956 factory_properties) 954 factory_properties)
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/isolate/resources/compare_build_artifacts.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698