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

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

Issue 279853002: Re-enable key silk case benchmarks on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. 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
50 class SmoothnessKeySilkCases(test.Test): 49 class SmoothnessKeySilkCases(test.Test):
51 """Measures rendering statistics for the key silk cases without GPU 50 """Measures rendering statistics for the key silk cases without GPU
52 rasterization 51 rasterization
53 """ 52 """
54 test = smoothness.Smoothness 53 test = smoothness.Smoothness
55 page_set = 'page_sets/key_silk_cases.py' 54 page_set = 'page_sets/key_silk_cases.py'
56 55
57 56
58 @test.Disabled('android') # crbug.com/355952
59 class SmoothnessFastPathKeySilkCases(test.Test): 57 class SmoothnessFastPathKeySilkCases(test.Test):
60 """Measures rendering statistics for the key silk cases without GPU 58 """Measures rendering statistics for the key silk cases without GPU
61 rasterization using bleeding edge rendering fast paths. 59 rasterization using bleeding edge rendering fast paths.
62 """ 60 """
63 tag = 'fast_path' 61 tag = 'fast_path'
64 test = smoothness.Smoothness 62 test = smoothness.Smoothness
65 page_set = 'page_sets/key_silk_cases.py' 63 page_set = 'page_sets/key_silk_cases.py'
66 def CustomizeBrowserOptions(self, options): 64 def CustomizeBrowserOptions(self, options):
67 silk_flags.CustomizeBrowserOptionsForFastPath(options) 65 silk_flags.CustomizeBrowserOptionsForFastPath(options)
68 66
(...skipping 14 matching lines...) Expand all
83 """Measures rendering statistics for the key mobile sites with GPU 81 """Measures rendering statistics for the key mobile sites with GPU
84 rasterization 82 rasterization
85 """ 83 """
86 tag = 'gpu_rasterization' 84 tag = 'gpu_rasterization'
87 test = smoothness.Smoothness 85 test = smoothness.Smoothness
88 page_set = 'page_sets/key_mobile_sites.py' 86 page_set = 'page_sets/key_mobile_sites.py'
89 def CustomizeBrowserOptions(self, options): 87 def CustomizeBrowserOptions(self, options):
90 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) 88 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
91 89
92 90
93 @test.Disabled('android') # crbug.com/355952
94 class SmoothnessGpuRasterizationKeySilkCases(test.Test): 91 class SmoothnessGpuRasterizationKeySilkCases(test.Test):
95 """Measures rendering statistics for the key silk cases with GPU rasterization 92 """Measures rendering statistics for the key silk cases with GPU rasterization
96 """ 93 """
97 tag = 'gpu_rasterization' 94 tag = 'gpu_rasterization'
98 test = smoothness.Smoothness 95 test = smoothness.Smoothness
99 page_set = 'page_sets/key_silk_cases.py' 96 page_set = 'page_sets/key_silk_cases.py'
100 def CustomizeBrowserOptions(self, options): 97 def CustomizeBrowserOptions(self, options):
101 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) 98 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
102 99
103 100
104 @test.Disabled('android') # crbug.com/355952
105 class SmoothnessFastPathGpuRasterizationKeySilkCases( 101 class SmoothnessFastPathGpuRasterizationKeySilkCases(
106 SmoothnessGpuRasterizationKeySilkCases): 102 SmoothnessGpuRasterizationKeySilkCases):
107 """Measures rendering statistics for the key silk cases with GPU rasterization 103 """Measures rendering statistics for the key silk cases with GPU rasterization
108 using bleeding edge rendering fast paths. 104 using bleeding edge rendering fast paths.
109 """ 105 """
110 tag = 'fast_path_gpu_rasterization' 106 tag = 'fast_path_gpu_rasterization'
111 test = smoothness.Smoothness 107 test = smoothness.Smoothness
112 page_set = 'page_sets/key_silk_cases.py' 108 page_set = 'page_sets/key_silk_cases.py'
113 def CustomizeBrowserOptions(self, options): 109 def CustomizeBrowserOptions(self, options):
114 super(SmoothnessFastPathGpuRasterizationKeySilkCases, self). \ 110 super(SmoothnessFastPathGpuRasterizationKeySilkCases, self). \
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 """Measures rendering statistics for the Polymer cases with GPU rasterization 158 """Measures rendering statistics for the Polymer cases with GPU rasterization
163 using bleeding edge rendering fast paths. 159 using bleeding edge rendering fast paths.
164 """ 160 """
165 tag = 'fast_path_gpu_rasterization' 161 tag = 'fast_path_gpu_rasterization'
166 test = smoothness.Smoothness 162 test = smoothness.Smoothness
167 page_set = 'page_sets/polymer.py' 163 page_set = 'page_sets/polymer.py'
168 def CustomizeBrowserOptions(self, options): 164 def CustomizeBrowserOptions(self, options):
169 super(SmoothnessFastPathGpuRasterizationPolymer, self). \ 165 super(SmoothnessFastPathGpuRasterizationPolymer, self). \
170 CustomizeBrowserOptions(options) 166 CustomizeBrowserOptions(options)
171 silk_flags.CustomizeBrowserOptionsForFastPath(options) 167 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