| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 import os | 5 import os |
| 6 | 6 |
| 7 from core import path_util | 7 from core import path_util |
| 8 from core import perf_benchmark | 8 from core import perf_benchmark |
| 9 | 9 |
| 10 from telemetry import benchmark | 10 from telemetry import benchmark |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 @classmethod | 220 @classmethod |
| 221 def Name(cls): | 221 def Name(cls): |
| 222 return 'blink_perf.events' | 222 return 'blink_perf.events' |
| 223 | 223 |
| 224 def CreateStorySet(self, options): | 224 def CreateStorySet(self, options): |
| 225 path = os.path.join(BLINK_PERF_BASE_DIR, 'Events') | 225 path = os.path.join(BLINK_PERF_BASE_DIR, 'Events') |
| 226 return CreateStorySetFromPath(path, SKIPPED_FILE) | 226 return CreateStorySetFromPath(path, SKIPPED_FILE) |
| 227 | 227 |
| 228 | 228 |
| 229 @benchmark.Disabled('win8') # http://crbug.com/462350 | 229 @benchmark.Disabled('win8') # http://crbug.com/462350 |
| 230 @benchmark.Disabled('win-reference') # http://crbug.com/642884 |
| 230 class BlinkPerfLayout(perf_benchmark.PerfBenchmark): | 231 class BlinkPerfLayout(perf_benchmark.PerfBenchmark): |
| 231 tag = 'layout' | 232 tag = 'layout' |
| 232 test = _BlinkPerfMeasurement | 233 test = _BlinkPerfMeasurement |
| 233 | 234 |
| 234 @classmethod | 235 @classmethod |
| 235 def Name(cls): | 236 def Name(cls): |
| 236 return 'blink_perf.layout' | 237 return 'blink_perf.layout' |
| 237 | 238 |
| 238 def CreateStorySet(self, options): | 239 def CreateStorySet(self, options): |
| 239 path = os.path.join(BLINK_PERF_BASE_DIR, 'Layout') | 240 path = os.path.join(BLINK_PERF_BASE_DIR, 'Layout') |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 | 336 |
| 336 def CreateStorySet(self, options): | 337 def CreateStorySet(self, options): |
| 337 path = os.path.join(BLINK_PERF_BASE_DIR, 'Pywebsocket') | 338 path = os.path.join(BLINK_PERF_BASE_DIR, 'Pywebsocket') |
| 338 return CreateStorySetFromPath( | 339 return CreateStorySetFromPath( |
| 339 path, SKIPPED_FILE, | 340 path, SKIPPED_FILE, |
| 340 shared_page_state_class=_SharedPywebsocketPageState) | 341 shared_page_state_class=_SharedPywebsocketPageState) |
| 341 | 342 |
| 342 @classmethod | 343 @classmethod |
| 343 def ShouldDisable(cls, possible_browser): | 344 def ShouldDisable(cls, possible_browser): |
| 344 return cls.IsSvelte(possible_browser) # http://crbug.com/551950 | 345 return cls.IsSvelte(possible_browser) # http://crbug.com/551950 |
| OLD | NEW |