OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 repaint | 6 from measurements import repaint |
7 import page_sets | 7 import page_sets |
8 from telemetry import benchmark | 8 from telemetry import benchmark |
9 | 9 |
10 | 10 |
11 class RepaintKeyMobileSites(benchmark.Benchmark): | 11 class RepaintKeyMobileSites(benchmark.Benchmark): |
12 """Measures repaint performance on the key mobile sites. | 12 """Measures repaint performance on the key mobile sites. |
13 | 13 |
14 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" | 14 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" |
15 test = repaint.Repaint | 15 test = repaint.Repaint |
16 page_set = page_sets.KeyMobileSitesPageSet | 16 page_set = page_sets.KeyMobileSitesPageSet |
17 | 17 |
18 | 18 |
| 19 @benchmark.Disabled('android') # crbug.com/412001 |
19 class RepaintGpuRasterizationKeyMobileSites(benchmark.Benchmark): | 20 class RepaintGpuRasterizationKeyMobileSites(benchmark.Benchmark): |
20 """Measures repaint performance on the key mobile sites with forced GPU | 21 """Measures repaint performance on the key mobile sites with forced GPU |
21 rasterization. | 22 rasterization. |
22 | 23 |
23 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" | 24 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" |
24 tag = 'gpu_rasterization' | 25 tag = 'gpu_rasterization' |
25 test = repaint.Repaint | 26 test = repaint.Repaint |
26 page_set = page_sets.KeyMobileSitesPageSet | 27 page_set = page_sets.KeyMobileSitesPageSet |
27 def CustomizeBrowserOptions(self, options): | 28 def CustomizeBrowserOptions(self, options): |
28 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) | 29 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) |
OLD | NEW |