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

Unified Diff: tools/perf/benchmarks/rasterize_and_record_micro.py

Issue 1016503002: Add a slimming paint variant of the rasterize and record micro benchmark (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: No reference build Created 5 years, 9 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 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/rasterize_and_record_micro.py
diff --git a/tools/perf/benchmarks/rasterize_and_record_micro.py b/tools/perf/benchmarks/rasterize_and_record_micro.py
index 88ddaad2074bcd8137502107c8fe22ebc3538c9f..45af2670e606ae97528a83d92eb8c422438a9f97 100644
--- a/tools/perf/benchmarks/rasterize_and_record_micro.py
+++ b/tools/perf/benchmarks/rasterize_and_record_micro.py
@@ -39,6 +39,7 @@ class _RasterizeAndRecordMicro(benchmark.Benchmark):
options.start_wait_time, options.rasterize_repeat,
options.record_repeat, options.timeout, options.report_detailed_results)
+
# RasterizeAndRecord disabled on mac because of crbug.com/350684.
# RasterizeAndRecord disabled on windows because of crbug.com/338057.
@benchmark.Disabled('mac', 'win')
@@ -53,6 +54,24 @@ class RasterizeAndRecordMicroTop25(_RasterizeAndRecordMicro):
return 'rasterize_and_record_micro.top_25_smooth'
+# RasterizeAndRecord disabled on mac because of crbug.com/350684.
+# RasterizeAndRecord disabled on windows because of crbug.com/338057.
+@benchmark.Disabled('mac', 'win')
+@benchmark.Disabled('reference')
+class RasterizeAndRecordMicroTop25WithSlimmingPaint(_RasterizeAndRecordMicro):
+ """Measures rasterize and record performance with --enable-slimming-paint.
+
+ http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
+ page_set = page_sets.Top25PageSet
+
+ def CustomizeBrowserOptions(self, options):
+ options.AppendExtraBrowserArgs(['--enable-slimming-paint'])
+
+ @classmethod
+ def Name(cls):
+ return 'rasterize_and_record_micro.top_25_slimming_paint_smooth'
+
+
@benchmark.Disabled('mac', 'win')
class RasterizeAndRecordMicroKeyMobileSites(_RasterizeAndRecordMicro):
"""Measures rasterize and record performance on the key mobile sites.
« 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