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

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

Issue 2168313004: telemetry: Disable top sites in thread_times benchmarks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | tools/perf/benchmarks/thread_times.py » ('j') | 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 5
6 def CustomizeBrowserOptionsForSoftwareRasterization(options): 6 def CustomizeBrowserOptionsForSoftwareRasterization(options):
7 """Enables flags needed for forced software rasterization.""" 7 """Enables flags needed for forced software rasterization."""
8 options.AppendExtraBrowserArgs('--disable-gpu-rasterization') 8 options.AppendExtraBrowserArgs('--disable-gpu-rasterization')
9 9
10 10
11 def CustomizeBrowserOptionsForGpuRasterization(options): 11 def CustomizeBrowserOptionsForGpuRasterization(options):
12 """Enables flags needed for forced GPU rasterization using Ganesh.""" 12 """Enables flags needed for forced GPU rasterization using Ganesh."""
13 options.AppendExtraBrowserArgs('--enable-threaded-compositing') 13 options.AppendExtraBrowserArgs('--enable-threaded-compositing')
14 options.AppendExtraBrowserArgs('--enable-impl-side-painting') 14 options.AppendExtraBrowserArgs('--enable-impl-side-painting')
15 options.AppendExtraBrowserArgs('--force-gpu-rasterization') 15 options.AppendExtraBrowserArgs('--force-gpu-rasterization')
16 16
17 17
18 def CustomizeBrowserOptionsForSyncScrolling(options): 18 def CustomizeBrowserOptionsForSyncScrolling(options):
19 """Enables flags needed for synchronous (main thread) scrolling.""" 19 """Enables flags needed for synchronous (main thread) scrolling."""
20 options.AppendExtraBrowserArgs('--disable-threaded-scrolling') 20 options.AppendExtraBrowserArgs('--disable-threaded-scrolling')
21
22 def CustomizeBrowserOptionsForThreadTimes(options):
23 """Disables options known to cause noise in thread times"""
24 # Remove once crbug.com/621128 is fixed.
25 options.AppendExtraBrowserArgs('--disable-top-sites')
OLDNEW
« no previous file with comments | « no previous file | tools/perf/benchmarks/thread_times.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698