| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 if R('dromaeo'): f.AddDromaeoTests(fp) | 278 if R('dromaeo'): f.AddDromaeoTests(fp) |
| 279 if R('frame_rate'): f.AddFrameRateTests(fp) | 279 if R('frame_rate'): f.AddFrameRateTests(fp) |
| 280 if R('dom_perf'): f.AddDomPerfTests(fp) | 280 if R('dom_perf'): f.AddDomPerfTests(fp) |
| 281 if R('page_cycler_http'): | 281 if R('page_cycler_http'): |
| 282 fp['http_page_cyclers'] = True | 282 fp['http_page_cyclers'] = True |
| 283 f.AddPageCyclerTests(factory_properties=fp) | 283 f.AddPageCyclerTests(factory_properties=fp) |
| 284 if R('startup'): | 284 if R('startup'): |
| 285 f.AddStartupTests(fp) | 285 f.AddStartupTests(fp) |
| 286 f.AddNewTabUITests(fp) | 286 f.AddNewTabUITests(fp) |
| 287 if R('sizes'): f.AddSizesTests(fp) | 287 if R('sizes'): f.AddSizesTests(fp) |
| 288 if R('sync'): |
| 289 f.AddSyncPerfTests(fp) |
| 288 | 290 |
| 289 if R('sync_integration'): | 291 if R('sync_integration'): |
| 290 f.AddSyncIntegrationTests(fp) | 292 f.AddSyncIntegrationTests(fp) |
| 291 | 293 |
| 292 # GPU tests: | 294 # GPU tests: |
| 293 if R('gpu_tests'): f.AddGpuTests(fp) | 295 if R('gpu_tests'): f.AddGpuTests(fp) |
| 294 | 296 |
| 295 # ChromeFrame tests: | 297 # ChromeFrame tests: |
| 296 if R('chrome_frame_unittests'): | 298 if R('chrome_frame_unittests'): |
| 297 f.AddBasicGTestTestStep('chrome_frame_unittests', fp) | 299 f.AddBasicGTestTestStep('chrome_frame_unittests', fp) |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 compile_timeout=1200, build_url=None, project=None, | 683 compile_timeout=1200, build_url=None, project=None, |
| 682 factory_properties=None): | 684 factory_properties=None): |
| 683 main = gclient_factory.GClientSolution( | 685 main = gclient_factory.GClientSolution( |
| 684 svn_url='http://git.chromium.org/chromium/src.git', | 686 svn_url='http://git.chromium.org/chromium/src.git', |
| 685 name='src', | 687 name='src', |
| 686 custom_deps_file='.DEPS.git') | 688 custom_deps_file='.DEPS.git') |
| 687 self._solutions = [main] | 689 self._solutions = [main] |
| 688 return self.ChromiumFactory(target, clobber, tests, mode, slave_type, | 690 return self.ChromiumFactory(target, clobber, tests, mode, slave_type, |
| 689 options, compile_timeout, build_url, project, | 691 options, compile_timeout, build_url, project, |
| 690 factory_properties) | 692 factory_properties) |
| OLD | NEW |