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

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

Issue 1966573003: Revert of Disable smoothness/v8.key_mobile_sites_smooth (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | tools/perf/benchmarks/v8.py » ('j') | 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', 114 @benchmark.Disabled('android',
115 'mac') # crbug.com/567802 115 'mac') # crbug.com/567802
116 class SmoothnessKeyDesktopMoveCases(_Smoothness): 116 class SmoothnessKeyDesktopMoveCases(_Smoothness):
117 page_set = page_sets.KeyDesktopMoveCasesPageSet 117 page_set = page_sets.KeyDesktopMoveCasesPageSet
118 118
119 @classmethod 119 @classmethod
120 def Name(cls): 120 def Name(cls):
121 return 'smoothness.key_desktop_move_cases' 121 return 'smoothness.key_desktop_move_cases'
122 122
123 123
124 @benchmark.Disabled('all') # crbug.com/610338 124 @benchmark.Enabled('android')
125 class SmoothnessKeyMobileSites(_Smoothness): 125 class SmoothnessKeyMobileSites(_Smoothness):
126 """Measures rendering statistics while scrolling down the key mobile sites. 126 """Measures rendering statistics while scrolling down the key mobile sites.
127 127
128 http://www.chromium.org/developers/design-documents/rendering-benchmarks 128 http://www.chromium.org/developers/design-documents/rendering-benchmarks
129 """ 129 """
130 page_set = page_sets.KeyMobileSitesSmoothPageSet 130 page_set = page_sets.KeyMobileSitesSmoothPageSet
131 131
132 @classmethod 132 @classmethod
133 def Name(cls): 133 def Name(cls):
134 return 'smoothness.key_mobile_sites_smooth' 134 return 'smoothness.key_mobile_sites_smooth'
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 """Measures rendering statistics while scrolling advertisements.""" 549 """Measures rendering statistics while scrolling advertisements."""
550 page_set = page_sets.SyntheticToughWebglAdCasesPageSet 550 page_set = page_sets.SyntheticToughWebglAdCasesPageSet
551 551
552 @classmethod 552 @classmethod
553 def Name(cls): 553 def Name(cls):
554 return 'smoothness.tough_webgl_ad_cases' 554 return 'smoothness.tough_webgl_ad_cases'
555 555
556 @classmethod 556 @classmethod
557 def ShouldDisable(cls, possible_browser): 557 def ShouldDisable(cls, possible_browser):
558 return cls.IsSvelte(possible_browser) # http://crbug.com/574485 558 return cls.IsSvelte(possible_browser) # http://crbug.com/574485
OLDNEW
« no previous file with comments | « no previous file | tools/perf/benchmarks/v8.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698