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

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

Issue 55363006: Web Animations CSS: Re-enable Web Animation perf benchmark (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 telemetry import test 7 from telemetry import test
8 from telemetry.core import util 8 from telemetry.core import util
9 9
10 from measurements import blink_perf 10 from measurements import blink_perf
(...skipping 13 matching lines...) Expand all
24 test = blink_perf.BlinkPerfMeasurement 24 test = blink_perf.BlinkPerfMeasurement
25 25
26 def CreatePageSet(self, options): 26 def CreatePageSet(self, options):
27 path = os.path.join(util.GetChromiumSrcDir(), 27 path = os.path.join(util.GetChromiumSrcDir(),
28 'third_party', 'WebKit', 'PerformanceTests', 'Animation') 28 'third_party', 'WebKit', 'PerformanceTests', 'Animation')
29 return blink_perf.CreatePageSetFromPath(path) 29 return blink_perf.CreatePageSetFromPath(path)
30 30
31 class BlinkPerfWebAnimations(test.Test): 31 class BlinkPerfWebAnimations(test.Test):
32 tag = 'web_animations' 32 tag = 'web_animations'
33 test = blink_perf.BlinkPerfMeasurement 33 test = blink_perf.BlinkPerfMeasurement
34 enabled = False
35 34
36 def CreatePageSet(self, options): 35 def CreatePageSet(self, options):
37 path = os.path.join(util.GetChromiumSrcDir(), 36 path = os.path.join(util.GetChromiumSrcDir(),
38 'third_party', 'WebKit', 'PerformanceTests', 'Animation') 37 'third_party', 'WebKit', 'PerformanceTests', 'Animation')
39 return blink_perf.CreatePageSetFromPath(path) 38 return blink_perf.CreatePageSetFromPath(path)
40 39
41 def CustomizeBrowserOptions(self, options): 40 def CustomizeBrowserOptions(self, options):
42 options.AppendExtraBrowserArgs('--enable-web-animations-css') 41 options.AppendExtraBrowserArgs('--enable-web-animations-css')
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