| 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'): f.AddSyncPerfTests(fp) |
| 288 | 289 |
| 289 if R('sync_integration'): | 290 if R('sync_integration'): |
| 290 f.AddSyncIntegrationTests(fp) | 291 f.AddSyncIntegrationTests(fp) |
| 291 | 292 |
| 292 # GPU tests: | 293 # GPU tests: |
| 293 if R('gpu_tests'): f.AddGpuTests(fp) | 294 if R('gpu_tests'): f.AddGpuTests(fp) |
| 294 | 295 |
| 295 # ChromeFrame tests: | 296 # ChromeFrame tests: |
| 296 if R('chrome_frame_unittests'): | 297 if R('chrome_frame_unittests'): |
| 297 f.AddBasicGTestTestStep('chrome_frame_unittests', fp) | 298 f.AddBasicGTestTestStep('chrome_frame_unittests', fp) |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 compile_timeout=1200, build_url=None, project=None, | 684 compile_timeout=1200, build_url=None, project=None, |
| 684 factory_properties=None): | 685 factory_properties=None): |
| 685 main = gclient_factory.GClientSolution( | 686 main = gclient_factory.GClientSolution( |
| 686 svn_url='http://git.chromium.org/chromium/src.git', | 687 svn_url='http://git.chromium.org/chromium/src.git', |
| 687 name='src', | 688 name='src', |
| 688 custom_deps_file='.DEPS.git') | 689 custom_deps_file='.DEPS.git') |
| 689 self._solutions = [main] | 690 self._solutions = [main] |
| 690 return self.ChromiumFactory(target, clobber, tests, mode, slave_type, | 691 return self.ChromiumFactory(target, clobber, tests, mode, slave_type, |
| 691 options, compile_timeout, build_url, project, | 692 options, compile_timeout, build_url, project, |
| 692 factory_properties) | 693 factory_properties) |
| OLD | NEW |