Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(700)

Side by Side Diff: tools/perf/benchmarks/blink_perf.py

Issue 2729383003: Add blink_perf.editing
Patch Set: update Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 # be set on each page. 229 # be set on each page.
230 for page in story_set: 230 for page in story_set:
231 page.skipped_gpus = [] 231 page.skipped_gpus = []
232 return story_set 232 return story_set
233 233
234 234
235 class BlinkPerfDOM(_BlinkPerfBenchmark): 235 class BlinkPerfDOM(_BlinkPerfBenchmark):
236 tag = 'dom' 236 tag = 'dom'
237 subdir = 'DOM' 237 subdir = 'DOM'
238 238
239 class BlinkPerfEditing(_BlinkPerfBenchmark):
240 tag = 'editing'
241 subdir = 'Editing'
239 242
240 class BlinkPerfEvents(_BlinkPerfBenchmark): 243 class BlinkPerfEvents(_BlinkPerfBenchmark):
241 tag = 'events' 244 tag = 'events'
242 subdir = 'Events' 245 subdir = 'Events'
243 246
244 247
245 @benchmark.Disabled('win8') # http://crbug.com/462350 248 @benchmark.Disabled('win8') # http://crbug.com/462350
246 class BlinkPerfLayout(_BlinkPerfBenchmark): 249 class BlinkPerfLayout(_BlinkPerfBenchmark):
247 tag = 'layout' 250 tag = 'layout'
248 subdir = 'Layout' 251 subdir = 'Layout'
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 303
301 def CreateStorySet(self, options): 304 def CreateStorySet(self, options):
302 path = os.path.join(BLINK_PERF_BASE_DIR, self.subdir) 305 path = os.path.join(BLINK_PERF_BASE_DIR, self.subdir)
303 return CreateStorySetFromPath( 306 return CreateStorySetFromPath(
304 path, SKIPPED_FILE, 307 path, SKIPPED_FILE,
305 shared_page_state_class=_SharedPywebsocketPageState) 308 shared_page_state_class=_SharedPywebsocketPageState)
306 309
307 @classmethod 310 @classmethod
308 def ShouldDisable(cls, possible_browser): 311 def ShouldDisable(cls, possible_browser):
309 return cls.IsSvelte(possible_browser) # http://crbug.com/551950 312 return cls.IsSvelte(possible_browser) # http://crbug.com/551950
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698