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

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

Issue 292453005: Revert of Re-enable key silk case benchmarks on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « tools/perf/benchmarks/rasterize_and_record_micro.py ('k') | 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 from benchmarks import silk_flags 5 from benchmarks import silk_flags
6 from measurements import smoothness 6 from measurements import smoothness
7 from telemetry import test 7 from telemetry import test
8 8
9 9
10 @test.Disabled # crbug.com/368767 10 @test.Disabled # crbug.com/368767
(...skipping 28 matching lines...) Expand all
39 test = smoothness.Smoothness 39 test = smoothness.Smoothness
40 page_set = 'page_sets/key_mobile_sites.py' 40 page_set = 'page_sets/key_mobile_sites.py'
41 41
42 42
43 @test.Disabled('android', 'mac') # crbug.com/350692, crbug.com/368767 43 @test.Disabled('android', 'mac') # crbug.com/350692, crbug.com/368767
44 class SmoothnessToughAnimationCases(test.Test): 44 class SmoothnessToughAnimationCases(test.Test):
45 test = smoothness.Smoothness 45 test = smoothness.Smoothness
46 page_set = 'page_sets/tough_animation_cases.py' 46 page_set = 'page_sets/tough_animation_cases.py'
47 47
48 48
49 @test.Disabled('android') # crbug.com/355952
49 class SmoothnessKeySilkCases(test.Test): 50 class SmoothnessKeySilkCases(test.Test):
50 """Measures rendering statistics for the key silk cases without GPU 51 """Measures rendering statistics for the key silk cases without GPU
51 rasterization 52 rasterization
52 """ 53 """
53 test = smoothness.Smoothness 54 test = smoothness.Smoothness
54 page_set = 'page_sets/key_silk_cases.py' 55 page_set = 'page_sets/key_silk_cases.py'
55 56
56 57
58 @test.Disabled('android') # crbug.com/355952
57 class SmoothnessFastPathKeySilkCases(test.Test): 59 class SmoothnessFastPathKeySilkCases(test.Test):
58 """Measures rendering statistics for the key silk cases without GPU 60 """Measures rendering statistics for the key silk cases without GPU
59 rasterization using bleeding edge rendering fast paths. 61 rasterization using bleeding edge rendering fast paths.
60 """ 62 """
61 tag = 'fast_path' 63 tag = 'fast_path'
62 test = smoothness.Smoothness 64 test = smoothness.Smoothness
63 page_set = 'page_sets/key_silk_cases.py' 65 page_set = 'page_sets/key_silk_cases.py'
64 def CustomizeBrowserOptions(self, options): 66 def CustomizeBrowserOptions(self, options):
65 silk_flags.CustomizeBrowserOptionsForFastPath(options) 67 silk_flags.CustomizeBrowserOptionsForFastPath(options)
66 68
(...skipping 14 matching lines...) Expand all
81 """Measures rendering statistics for the key mobile sites with GPU 83 """Measures rendering statistics for the key mobile sites with GPU
82 rasterization 84 rasterization
83 """ 85 """
84 tag = 'gpu_rasterization' 86 tag = 'gpu_rasterization'
85 test = smoothness.Smoothness 87 test = smoothness.Smoothness
86 page_set = 'page_sets/key_mobile_sites.py' 88 page_set = 'page_sets/key_mobile_sites.py'
87 def CustomizeBrowserOptions(self, options): 89 def CustomizeBrowserOptions(self, options):
88 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) 90 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
89 91
90 92
93 @test.Disabled('android') # crbug.com/355952
91 class SmoothnessGpuRasterizationKeySilkCases(test.Test): 94 class SmoothnessGpuRasterizationKeySilkCases(test.Test):
92 """Measures rendering statistics for the key silk cases with GPU rasterization 95 """Measures rendering statistics for the key silk cases with GPU rasterization
93 """ 96 """
94 tag = 'gpu_rasterization' 97 tag = 'gpu_rasterization'
95 test = smoothness.Smoothness 98 test = smoothness.Smoothness
96 page_set = 'page_sets/key_silk_cases.py' 99 page_set = 'page_sets/key_silk_cases.py'
97 def CustomizeBrowserOptions(self, options): 100 def CustomizeBrowserOptions(self, options):
98 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) 101 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
99 102
100 103
104 @test.Disabled('android') # crbug.com/355952
101 class SmoothnessFastPathGpuRasterizationKeySilkCases( 105 class SmoothnessFastPathGpuRasterizationKeySilkCases(
102 SmoothnessGpuRasterizationKeySilkCases): 106 SmoothnessGpuRasterizationKeySilkCases):
103 """Measures rendering statistics for the key silk cases with GPU rasterization 107 """Measures rendering statistics for the key silk cases with GPU rasterization
104 using bleeding edge rendering fast paths. 108 using bleeding edge rendering fast paths.
105 """ 109 """
106 tag = 'fast_path_gpu_rasterization' 110 tag = 'fast_path_gpu_rasterization'
107 test = smoothness.Smoothness 111 test = smoothness.Smoothness
108 page_set = 'page_sets/key_silk_cases.py' 112 page_set = 'page_sets/key_silk_cases.py'
109 def CustomizeBrowserOptions(self, options): 113 def CustomizeBrowserOptions(self, options):
110 super(SmoothnessFastPathGpuRasterizationKeySilkCases, self). \ 114 super(SmoothnessFastPathGpuRasterizationKeySilkCases, self). \
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 """Measures rendering statistics for the Polymer cases with GPU rasterization 162 """Measures rendering statistics for the Polymer cases with GPU rasterization
159 using bleeding edge rendering fast paths. 163 using bleeding edge rendering fast paths.
160 """ 164 """
161 tag = 'fast_path_gpu_rasterization' 165 tag = 'fast_path_gpu_rasterization'
162 test = smoothness.Smoothness 166 test = smoothness.Smoothness
163 page_set = 'page_sets/polymer.py' 167 page_set = 'page_sets/polymer.py'
164 def CustomizeBrowserOptions(self, options): 168 def CustomizeBrowserOptions(self, options):
165 super(SmoothnessFastPathGpuRasterizationPolymer, self). \ 169 super(SmoothnessFastPathGpuRasterizationPolymer, self). \
166 CustomizeBrowserOptions(options) 170 CustomizeBrowserOptions(options)
167 silk_flags.CustomizeBrowserOptionsForFastPath(options) 171 silk_flags.CustomizeBrowserOptionsForFastPath(options)
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/rasterize_and_record_micro.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698