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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 return CreateStorySetFromPath(path, SKIPPED_FILE) | 171 return CreateStorySetFromPath(path, SKIPPED_FILE) |
172 | 172 |
173 | 173 |
174 @benchmark.Disabled('android-webview', # http://crbug.com/593200 | 174 @benchmark.Disabled('android-webview', # http://crbug.com/593200 |
175 'reference') # http://crbug.com/576779 | 175 'reference') # http://crbug.com/576779 |
176 class BlinkPerfCanvas(perf_benchmark.PerfBenchmark): | 176 class BlinkPerfCanvas(perf_benchmark.PerfBenchmark): |
177 tag = 'canvas' | 177 tag = 'canvas' |
178 test = _BlinkPerfMeasurement | 178 test = _BlinkPerfMeasurement |
179 | 179 |
180 @classmethod | 180 @classmethod |
| 181 def ShouldDisable(cls, possible_browser): |
| 182 return cls.IsSvelte(possible_browser) # http://crbug.com/593973. |
| 183 |
| 184 @classmethod |
181 def Name(cls): | 185 def Name(cls): |
182 return 'blink_perf.canvas' | 186 return 'blink_perf.canvas' |
183 | 187 |
184 def CreateStorySet(self, options): | 188 def CreateStorySet(self, options): |
185 path = os.path.join(BLINK_PERF_BASE_DIR, 'Canvas') | 189 path = os.path.join(BLINK_PERF_BASE_DIR, 'Canvas') |
186 story_set = CreateStorySetFromPath( | 190 story_set = CreateStorySetFromPath( |
187 path, SKIPPED_FILE, | 191 path, SKIPPED_FILE, |
188 shared_page_state_class=( | 192 shared_page_state_class=( |
189 webgl_supported_shared_state.WebGLSupportedSharedState)) | 193 webgl_supported_shared_state.WebGLSupportedSharedState)) |
190 # WebGLSupportedSharedState requires the skipped_gpus property to | 194 # WebGLSupportedSharedState requires the skipped_gpus property to |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 | 332 |
329 def CreateStorySet(self, options): | 333 def CreateStorySet(self, options): |
330 path = os.path.join(BLINK_PERF_BASE_DIR, 'Pywebsocket') | 334 path = os.path.join(BLINK_PERF_BASE_DIR, 'Pywebsocket') |
331 return CreateStorySetFromPath( | 335 return CreateStorySetFromPath( |
332 path, SKIPPED_FILE, | 336 path, SKIPPED_FILE, |
333 shared_page_state_class=_SharedPywebsocketPageState) | 337 shared_page_state_class=_SharedPywebsocketPageState) |
334 | 338 |
335 @classmethod | 339 @classmethod |
336 def ShouldDisable(cls, possible_browser): | 340 def ShouldDisable(cls, possible_browser): |
337 return cls.IsSvelte(possible_browser) # http://crbug.com/551950 | 341 return cls.IsSvelte(possible_browser) # http://crbug.com/551950 |
OLD | NEW |