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

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

Issue 2691993002: Enable smoothness.maps benchmark on all platforms. (Closed)
Patch Set: Created 3 years, 10 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 import multiprocessing 4 import multiprocessing
5 5
6 from core import perf_benchmark 6 from core import perf_benchmark
7 7
8 from benchmarks import silk_flags 8 from benchmarks import silk_flags
9 from measurements import smoothness 9 from measurements import smoothness
10 import page_sets 10 import page_sets
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 @benchmark.Disabled('android') # crbug.com/373812 114 @benchmark.Disabled('android') # crbug.com/373812
115 @benchmark.Disabled('win-reference') # crbug.com/612810 115 @benchmark.Disabled('win-reference') # crbug.com/612810
116 class SmoothnessToughWebGLCases(_Smoothness): 116 class SmoothnessToughWebGLCases(_Smoothness):
117 page_set = page_sets.ToughWebglCasesPageSet 117 page_set = page_sets.ToughWebglCasesPageSet
118 118
119 @classmethod 119 @classmethod
120 def Name(cls): 120 def Name(cls):
121 return 'smoothness.tough_webgl_cases' 121 return 'smoothness.tough_webgl_cases'
122 122
123 123
124 @benchmark.Enabled('android')
125 @benchmark.Disabled('android-webview') # http://crbug.com/653933 124 @benchmark.Disabled('android-webview') # http://crbug.com/653933
126 class SmoothnessMaps(perf_benchmark.PerfBenchmark): 125 class SmoothnessMaps(perf_benchmark.PerfBenchmark):
127 page_set = page_sets.MapsPageSet 126 page_set = page_sets.MapsPageSet
128 127
129 @classmethod 128 @classmethod
130 def Name(cls): 129 def Name(cls):
131 return 'smoothness.maps' 130 return 'smoothness.maps'
132 131
133 132
134 @benchmark.Disabled('android', 133 @benchmark.Disabled('android',
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 """Measures rendering statistics while scrolling advertisements.""" 506 """Measures rendering statistics while scrolling advertisements."""
508 page_set = page_sets.SyntheticToughWebglAdCasesPageSet 507 page_set = page_sets.SyntheticToughWebglAdCasesPageSet
509 508
510 @classmethod 509 @classmethod
511 def Name(cls): 510 def Name(cls):
512 return 'smoothness.tough_webgl_ad_cases' 511 return 'smoothness.tough_webgl_ad_cases'
513 512
514 @classmethod 513 @classmethod
515 def ShouldDisable(cls, possible_browser): 514 def ShouldDisable(cls, possible_browser):
516 return cls.IsSvelte(possible_browser) # http://crbug.com/574485 515 return cls.IsSvelte(possible_browser) # http://crbug.com/574485
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