OLD | NEW |
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 29 matching lines...) Expand all Loading... |
40 test = smoothness.Smoothness | 40 test = smoothness.Smoothness |
41 page_set = 'page_sets/key_mobile_sites.py' | 41 page_set = 'page_sets/key_mobile_sites.py' |
42 | 42 |
43 | 43 |
44 @test.Disabled('android', 'mac') # crbug.com/350692, crbug.com/368767 | 44 @test.Disabled('android', 'mac') # crbug.com/350692, crbug.com/368767 |
45 class SmoothnessToughAnimationCases(test.Test): | 45 class SmoothnessToughAnimationCases(test.Test): |
46 test = smoothness.Smoothness | 46 test = smoothness.Smoothness |
47 page_set = 'page_sets/tough_animation_cases.py' | 47 page_set = 'page_sets/tough_animation_cases.py' |
48 | 48 |
49 | 49 |
50 @test.Disabled('android') # crbug.com/355952 | |
51 class SmoothnessKeySilkCases(test.Test): | 50 class SmoothnessKeySilkCases(test.Test): |
52 """Measures rendering statistics for the key silk cases without GPU | 51 """Measures rendering statistics for the key silk cases without GPU |
53 rasterization | 52 rasterization |
54 """ | 53 """ |
55 test = smoothness.Smoothness | 54 test = smoothness.Smoothness |
56 page_set = 'page_sets/key_silk_cases.py' | 55 page_set = 'page_sets/key_silk_cases.py' |
57 | 56 |
58 | 57 |
59 @test.Disabled('android') # crbug.com/355952 | |
60 class SmoothnessFastPathKeySilkCases(test.Test): | 58 class SmoothnessFastPathKeySilkCases(test.Test): |
61 """Measures rendering statistics for the key silk cases without GPU | 59 """Measures rendering statistics for the key silk cases without GPU |
62 rasterization using bleeding edge rendering fast paths. | 60 rasterization using bleeding edge rendering fast paths. |
63 """ | 61 """ |
64 tag = 'fast_path' | 62 tag = 'fast_path' |
65 test = smoothness.Smoothness | 63 test = smoothness.Smoothness |
66 page_set = 'page_sets/key_silk_cases.py' | 64 page_set = 'page_sets/key_silk_cases.py' |
67 def CustomizeBrowserOptions(self, options): | 65 def CustomizeBrowserOptions(self, options): |
68 silk_flags.CustomizeBrowserOptionsForFastPath(options) | 66 silk_flags.CustomizeBrowserOptionsForFastPath(options) |
69 | 67 |
(...skipping 14 matching lines...) Expand all Loading... |
84 """Measures rendering statistics for the key mobile sites with GPU | 82 """Measures rendering statistics for the key mobile sites with GPU |
85 rasterization | 83 rasterization |
86 """ | 84 """ |
87 tag = 'gpu_rasterization' | 85 tag = 'gpu_rasterization' |
88 test = smoothness.Smoothness | 86 test = smoothness.Smoothness |
89 page_set = 'page_sets/key_mobile_sites.py' | 87 page_set = 'page_sets/key_mobile_sites.py' |
90 def CustomizeBrowserOptions(self, options): | 88 def CustomizeBrowserOptions(self, options): |
91 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) | 89 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) |
92 | 90 |
93 | 91 |
94 @test.Disabled('android') # crbug.com/355952 | |
95 class SmoothnessGpuRasterizationKeySilkCases(test.Test): | 92 class SmoothnessGpuRasterizationKeySilkCases(test.Test): |
96 """Measures rendering statistics for the key silk cases with GPU rasterization | 93 """Measures rendering statistics for the key silk cases with GPU rasterization |
97 """ | 94 """ |
98 tag = 'gpu_rasterization' | 95 tag = 'gpu_rasterization' |
99 test = smoothness.Smoothness | 96 test = smoothness.Smoothness |
100 page_set = 'page_sets/key_silk_cases.py' | 97 page_set = 'page_sets/key_silk_cases.py' |
101 def CustomizeBrowserOptions(self, options): | 98 def CustomizeBrowserOptions(self, options): |
102 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) | 99 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) |
103 | 100 |
104 | 101 |
105 @test.Disabled('android') # crbug.com/355952 | |
106 class SmoothnessFastPathGpuRasterizationKeySilkCases( | 102 class SmoothnessFastPathGpuRasterizationKeySilkCases( |
107 SmoothnessGpuRasterizationKeySilkCases): | 103 SmoothnessGpuRasterizationKeySilkCases): |
108 """Measures rendering statistics for the key silk cases with GPU rasterization | 104 """Measures rendering statistics for the key silk cases with GPU rasterization |
109 using bleeding edge rendering fast paths. | 105 using bleeding edge rendering fast paths. |
110 """ | 106 """ |
111 tag = 'fast_path_gpu_rasterization' | 107 tag = 'fast_path_gpu_rasterization' |
112 test = smoothness.Smoothness | 108 test = smoothness.Smoothness |
113 page_set = 'page_sets/key_silk_cases.py' | 109 page_set = 'page_sets/key_silk_cases.py' |
114 def CustomizeBrowserOptions(self, options): | 110 def CustomizeBrowserOptions(self, options): |
115 super(SmoothnessFastPathGpuRasterizationKeySilkCases, self). \ | 111 super(SmoothnessFastPathGpuRasterizationKeySilkCases, self). \ |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 """Measures rendering statistics for the Polymer cases with GPU rasterization | 159 """Measures rendering statistics for the Polymer cases with GPU rasterization |
164 using bleeding edge rendering fast paths. | 160 using bleeding edge rendering fast paths. |
165 """ | 161 """ |
166 tag = 'fast_path_gpu_rasterization' | 162 tag = 'fast_path_gpu_rasterization' |
167 test = smoothness.Smoothness | 163 test = smoothness.Smoothness |
168 page_set = 'page_sets/polymer.py' | 164 page_set = 'page_sets/polymer.py' |
169 def CustomizeBrowserOptions(self, options): | 165 def CustomizeBrowserOptions(self, options): |
170 super(SmoothnessFastPathGpuRasterizationPolymer, self). \ | 166 super(SmoothnessFastPathGpuRasterizationPolymer, self). \ |
171 CustomizeBrowserOptions(options) | 167 CustomizeBrowserOptions(options) |
172 silk_flags.CustomizeBrowserOptionsForFastPath(options) | 168 silk_flags.CustomizeBrowserOptionsForFastPath(options) |
OLD | NEW |