| 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 tag = 'dom' | 236 tag = 'dom' |
| 237 subdir = 'DOM' | 237 subdir = 'DOM' |
| 238 | 238 |
| 239 | 239 |
| 240 class BlinkPerfEvents(_BlinkPerfBenchmark): | 240 class BlinkPerfEvents(_BlinkPerfBenchmark): |
| 241 tag = 'events' | 241 tag = 'events' |
| 242 subdir = 'Events' | 242 subdir = 'Events' |
| 243 | 243 |
| 244 | 244 |
| 245 @benchmark.Disabled('win8') # http://crbug.com/462350 | 245 @benchmark.Disabled('win8') # http://crbug.com/462350 |
| 246 @benchmark.Disabled('win-reference') # http://crbug.com/642884 | |
| 247 class BlinkPerfLayout(_BlinkPerfBenchmark): | 246 class BlinkPerfLayout(_BlinkPerfBenchmark): |
| 248 tag = 'layout' | 247 tag = 'layout' |
| 249 subdir = 'Layout' | 248 subdir = 'Layout' |
| 250 | 249 |
| 251 @classmethod | 250 @classmethod |
| 252 def ShouldDisable(cls, possible_browser): | 251 def ShouldDisable(cls, possible_browser): |
| 253 return cls.IsSvelte(possible_browser) # http://crbug.com/551950 | 252 return cls.IsSvelte(possible_browser) # http://crbug.com/551950 |
| 254 | 253 |
| 255 | 254 |
| 256 class BlinkPerfPaint(_BlinkPerfBenchmark): | 255 class BlinkPerfPaint(_BlinkPerfBenchmark): |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 | 300 |
| 302 def CreateStorySet(self, options): | 301 def CreateStorySet(self, options): |
| 303 path = os.path.join(BLINK_PERF_BASE_DIR, self.subdir) | 302 path = os.path.join(BLINK_PERF_BASE_DIR, self.subdir) |
| 304 return CreateStorySetFromPath( | 303 return CreateStorySetFromPath( |
| 305 path, SKIPPED_FILE, | 304 path, SKIPPED_FILE, |
| 306 shared_page_state_class=_SharedPywebsocketPageState) | 305 shared_page_state_class=_SharedPywebsocketPageState) |
| 307 | 306 |
| 308 @classmethod | 307 @classmethod |
| 309 def ShouldDisable(cls, possible_browser): | 308 def ShouldDisable(cls, possible_browser): |
| 310 return cls.IsSvelte(possible_browser) # http://crbug.com/551950 | 309 return cls.IsSvelte(possible_browser) # http://crbug.com/551950 |
| OLD | NEW |