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

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

Issue 2399393002: Disable smoothness.maps on Android WebView Perf (Closed)
Patch Set: Created 4 years, 2 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 @benchmark.Disabled('win-reference') # crbug.com/612810 108 @benchmark.Disabled('win-reference') # crbug.com/612810
109 class SmoothnessToughWebGLCases(_Smoothness): 109 class SmoothnessToughWebGLCases(_Smoothness):
110 page_set = page_sets.ToughWebglCasesPageSet 110 page_set = page_sets.ToughWebglCasesPageSet
111 111
112 @classmethod 112 @classmethod
113 def Name(cls): 113 def Name(cls):
114 return 'smoothness.tough_webgl_cases' 114 return 'smoothness.tough_webgl_cases'
115 115
116 116
117 @benchmark.Enabled('android') 117 @benchmark.Enabled('android')
118 @benchmark.Disabled('android-webview') # http://crbug.com/653933
118 class SmoothnessMaps(perf_benchmark.PerfBenchmark): 119 class SmoothnessMaps(perf_benchmark.PerfBenchmark):
119 page_set = page_sets.MapsPageSet 120 page_set = page_sets.MapsPageSet
120 121
121 @classmethod 122 @classmethod
122 def Name(cls): 123 def Name(cls):
123 return 'smoothness.maps' 124 return 'smoothness.maps'
124 125
125 126
126 @benchmark.Disabled('android', 127 @benchmark.Disabled('android',
127 'mac') # crbug.com/567802 128 'mac') # crbug.com/567802
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 """Measures rendering statistics while scrolling advertisements.""" 487 """Measures rendering statistics while scrolling advertisements."""
487 page_set = page_sets.SyntheticToughWebglAdCasesPageSet 488 page_set = page_sets.SyntheticToughWebglAdCasesPageSet
488 489
489 @classmethod 490 @classmethod
490 def Name(cls): 491 def Name(cls):
491 return 'smoothness.tough_webgl_ad_cases' 492 return 'smoothness.tough_webgl_ad_cases'
492 493
493 @classmethod 494 @classmethod
494 def ShouldDisable(cls, possible_browser): 495 def ShouldDisable(cls, possible_browser):
495 return cls.IsSvelte(possible_browser) # http://crbug.com/574485 496 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