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

Unified 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: Rebase 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/oilpan_gc_times.py
diff --git a/tools/perf/benchmarks/oilpan_gc_times.py b/tools/perf/benchmarks/oilpan_gc_times.py
index af5af4ff7994afef02ebf4123736d4f4c14b32a5..e4b01995694fbfdeccd523799bee01037e675fda 100644
--- a/tools/perf/benchmarks/oilpan_gc_times.py
+++ b/tools/perf/benchmarks/oilpan_gc_times.py
@@ -8,7 +8,6 @@ import page_sets
from benchmarks import blink_perf
from benchmarks import silk_flags
from measurements import oilpan_gc_times
-from measurements import smoothness
from telemetry import benchmark
from telemetry.core import util
from telemetry import page
@@ -38,5 +37,16 @@ class OilpanGCTimesSmoothnessAnimation(benchmark.Benchmark):
page_set = page_sets.ToughAnimationCasesPageSet
-# TODO(peria): Add more page sets. 'key_silk_cases' and
-# 'smoothness.sync_scroll.key_mobile_sites' are wanted for now.
+@benchmark.Enabled('android')
+class OilpanGCTimesKeySilkCases(benchmark.Benchmark):
+ test = oilpan_gc_times.OilpanGCTimesForSmoothness
+ page_set = page_sets.KeySilkCasesPageSet
+
+
+@benchmark.Enabled('android')
+class OilpanGCTimesSyncScrollKeyMobileSites(benchmark.Benchmark):
+ tag = 'sync_scroll'
+ test = oilpan_gc_times.OilpanGCTimesForSmoothness
+ page_set = page_sets.KeyMobileSitesPageSet
+ def CustomizeBrowserOptions(self, options):
+ silk_flags.CustomizeBrowserOptionsForSyncScrolling(options)
« 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