| 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 page_sets import webgl_supported_shared_state | 10 from page_sets import webgl_supported_shared_state |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 return CreateStorySetFromPath(path, SKIPPED_FILE) | 246 return CreateStorySetFromPath(path, SKIPPED_FILE) |
| 247 | 247 |
| 248 | 248 |
| 249 @benchmark.Owner(emails=['yukishiino@chromium.org', | 249 @benchmark.Owner(emails=['yukishiino@chromium.org', |
| 250 'bashi@chromium.org', | 250 'bashi@chromium.org', |
| 251 'haraken@chromium.org']) | 251 'haraken@chromium.org']) |
| 252 class BlinkPerfBindings(_BlinkPerfBenchmark): | 252 class BlinkPerfBindings(_BlinkPerfBenchmark): |
| 253 tag = 'bindings' | 253 tag = 'bindings' |
| 254 subdir = 'Bindings' | 254 subdir = 'Bindings' |
| 255 | 255 |
| 256 @classmethod | |
| 257 def ShouldDisable(cls, possible_browser): | |
| 258 # http://crbug.com/563979 | |
| 259 return cls.IsSvelte(possible_browser) | |
| 260 | |
| 261 | 256 |
| 262 @benchmark.Enabled('content-shell') | 257 @benchmark.Enabled('content-shell') |
| 263 class BlinkPerfBlinkGC(_BlinkPerfBenchmark): | 258 class BlinkPerfBlinkGC(_BlinkPerfBenchmark): |
| 264 tag = 'blink_gc' | 259 tag = 'blink_gc' |
| 265 subdir = 'BlinkGC' | 260 subdir = 'BlinkGC' |
| 266 | 261 |
| 267 | 262 |
| 268 @benchmark.Owner(emails=['rune@opera.com']) | 263 @benchmark.Owner(emails=['rune@opera.com']) |
| 269 class BlinkPerfCSS(_BlinkPerfBenchmark): | 264 class BlinkPerfCSS(_BlinkPerfBenchmark): |
| 270 tag = 'css' | 265 tag = 'css' |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 | 345 |
| 351 | 346 |
| 352 @benchmark.Owner(emails=['hayato@chromium.org']) | 347 @benchmark.Owner(emails=['hayato@chromium.org']) |
| 353 class BlinkPerfShadowDOM(_BlinkPerfBenchmark): | 348 class BlinkPerfShadowDOM(_BlinkPerfBenchmark): |
| 354 tag = 'shadow_dom' | 349 tag = 'shadow_dom' |
| 355 subdir = 'ShadowDOM' | 350 subdir = 'ShadowDOM' |
| 356 | 351 |
| 357 @classmethod | 352 @classmethod |
| 358 def ShouldDisable(cls, possible_browser): # http://crbug.com/702319 | 353 def ShouldDisable(cls, possible_browser): # http://crbug.com/702319 |
| 359 return possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X' | 354 return possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X' |
| OLD | NEW |