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

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

Issue 578193002: telemetry: re-enable repaint.gpu_rasterization.key_mobile_sites (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | 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 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
20 class RepaintGpuRasterizationKeyMobileSites(benchmark.Benchmark): 19 class RepaintGpuRasterizationKeyMobileSites(benchmark.Benchmark):
tonyg 2014/09/23 00:11:58 This'll run on desktop now too - if that's desired
ernstm 2014/10/06 17:38:20 Changed to enable on Android only.
21 """Measures repaint performance on the key mobile sites with forced GPU 20 """Measures repaint performance on the key mobile sites with forced GPU
22 rasterization. 21 rasterization.
23 22
24 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 23 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
25 tag = 'gpu_rasterization' 24 tag = 'gpu_rasterization'
26 test = repaint.Repaint 25 test = repaint.Repaint
27 page_set = page_sets.KeyMobileSitesPageSet 26 page_set = page_sets.KeyMobileSitesPageSet
28 def CustomizeBrowserOptions(self, options): 27 def CustomizeBrowserOptions(self, options):
29 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) 28 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698