| OLD | NEW |
| 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 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 'rasterize_and_record.key_mobile_sites', | 716 'rasterize_and_record.key_mobile_sites', |
| 717 'rasterize_and_record.key_silk_cases', | 717 'rasterize_and_record.key_silk_cases', |
| 718 'rasterize_and_record.top_25', | 718 'rasterize_and_record.top_25', |
| 719 'rasterize_and_record_micro.key_mobile_sites', | 719 'rasterize_and_record_micro.key_mobile_sites', |
| 720 'rasterize_and_record_micro.top_25', | 720 'rasterize_and_record_micro.top_25', |
| 721 'smoothness.gpu_rasterization.key_mobile_sites', | 721 'smoothness.gpu_rasterization.key_mobile_sites', |
| 722 'smoothness.gpu_rasterization.top_25', | 722 'smoothness.gpu_rasterization.top_25', |
| 723 'smoothness.key_mobile_sites', | 723 'smoothness.key_mobile_sites', |
| 724 'smoothness.top_25', | 724 'smoothness.top_25', |
| 725 'smoothness.tough_canvas_cases', | 725 'smoothness.tough_canvas_cases', |
| 726 'smoothness.tough_pinch_zoom_cases', |
| 726 'tab_switching.top_10', | 727 'tab_switching.top_10', |
| 727 'thread_times.key_mobile_sites', | 728 'thread_times.key_mobile_sites', |
| 728 ] | 729 ] |
| 729 for test_name in real_world_benchmarks: | 730 for test_name in real_world_benchmarks: |
| 730 Telemetry(test_name) | 731 Telemetry(test_name) |
| 731 | 732 |
| 732 # Other benchmarks: | 733 # Other benchmarks: |
| 733 if R('memory'): | 734 if R('memory'): |
| 734 f.AddMemoryTests(fp) | 735 f.AddMemoryTests(fp) |
| 735 if R('tab_capture_performance'): | 736 if R('tab_capture_performance'): |
| (...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1403 mode=None, slave_type='BuilderTester', options=None, | 1404 mode=None, slave_type='BuilderTester', options=None, |
| 1404 compile_timeout=1200, build_url=None, project=None, | 1405 compile_timeout=1200, build_url=None, project=None, |
| 1405 factory_properties=None): | 1406 factory_properties=None): |
| 1406 # Make sure the solution is not already there. | 1407 # Make sure the solution is not already there. |
| 1407 if 'cros_deps' not in [s.name for s in self._solutions]: | 1408 if 'cros_deps' not in [s.name for s in self._solutions]: |
| 1408 self._solutions.append(gclient_factory.GClientSolution( | 1409 self._solutions.append(gclient_factory.GClientSolution( |
| 1409 config.Master.trunk_url + '/src/tools/cros.DEPS', name='cros_deps')) | 1410 config.Master.trunk_url + '/src/tools/cros.DEPS', name='cros_deps')) |
| 1410 return self.ChromiumFactory(target, clobber, tests, mode, slave_type, | 1411 return self.ChromiumFactory(target, clobber, tests, mode, slave_type, |
| 1411 options, compile_timeout, build_url, project, | 1412 options, compile_timeout, build_url, project, |
| 1412 factory_properties) | 1413 factory_properties) |
| OLD | NEW |