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

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

Issue 791923002: [Oilpan] Add Silk pages in Oilpan performance page sets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 import os 5 import os
6 6
7 import page_sets 7 import page_sets
8 from benchmarks import blink_perf 8 from benchmarks import blink_perf
9 from benchmarks import silk_flags 9 from benchmarks import silk_flags
10 from measurements import oilpan_gc_times 10 from measurements import oilpan_gc_times
(...skipping 20 matching lines...) Expand all
31 def CreatePageSet(self, options): 31 def CreatePageSet(self, options):
32 path = os.path.join(blink_perf.BLINK_PERF_BASE_DIR, 'BlinkGC') 32 path = os.path.join(blink_perf.BLINK_PERF_BASE_DIR, 'BlinkGC')
33 return blink_perf.CreatePageSetFromPath(path, blink_perf.SKIPPED_FILE) 33 return blink_perf.CreatePageSetFromPath(path, blink_perf.SKIPPED_FILE)
34 34
35 35
36 class OilpanGCTimesSmoothnessAnimation(benchmark.Benchmark): 36 class OilpanGCTimesSmoothnessAnimation(benchmark.Benchmark):
37 test = oilpan_gc_times.OilpanGCTimesForSmoothness 37 test = oilpan_gc_times.OilpanGCTimesForSmoothness
38 page_set = page_sets.ToughAnimationCasesPageSet 38 page_set = page_sets.ToughAnimationCasesPageSet
39 39
40 40
41 # TODO(peria): Add more page sets. 'key_silk_cases' and 41 @benchmark.Disabled
Sami 2014/12/11 10:31:33 Why does this need to be disabled? Maybe we should
peria 2014/12/11 13:45:05 Hmm, two pages in this page set do not run well, a
42 # 'smoothness.sync_scroll.key_mobile_sites' are wanted for now. 42 class OilpanGCTimesKeySilkCases(benchmark.Benchmark):
43 test = oilpan_gc_times.OilpanGCTimesForSmoothness
44 page_set = page_sets.KeySilkCasesPageSet
45
46
47 @benchmark.Enabled('android')
48 class OilpanGCTimesSyncScrollKeyMobileSites(benchmark.Benchmark):
49 tag = 'sync_scroll'
50 test = oilpan_gc_times.OilpanGCTimesForSmoothness
51 page_set = page_sets.KeyMobileSitesPageSet
52 def CustomizeBrowserOptions(self, options):
53 silk_flags.CustomizeBrowserOptionsForSyncScrolling(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