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

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

Issue 2885563002: Remove blink_style benchmarks (Closed)
Patch Set: Created 3 years, 7 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 | « tools/perf/benchmark.csv ('k') | tools/perf/measurements/blink_style.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/blink_style.py
diff --git a/tools/perf/benchmarks/blink_style.py b/tools/perf/benchmarks/blink_style.py
deleted file mode 100644
index 73e1929aa0073e525a3164a31824e28af750353e..0000000000000000000000000000000000000000
--- a/tools/perf/benchmarks/blink_style.py
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-from core import perf_benchmark
-
-from measurements import blink_style
-import page_sets
-from telemetry import benchmark
-
-
-@benchmark.Disabled('win8')
-class BlinkStyleTop25(perf_benchmark.PerfBenchmark):
- """Measures performance of Blink's style engine (CSS Parsing, Style Recalc,
- etc.) on the top 25 pages.
- """
- test = blink_style.BlinkStyle
- page_set = page_sets.Top25PageSet
-
- @classmethod
- def Name(cls):
- return 'blink_style.top_25'
-
-
-@benchmark.Enabled('android')
-class BlinkStyleKeyMobileSites(perf_benchmark.PerfBenchmark):
- """Measures performance of Blink's style engine (CSS Parsing, Style Recalc,
- etc.) on key mobile sites.
- """
- test = blink_style.BlinkStyle
- page_set = page_sets.KeyMobileSitesPageSet
-
- @classmethod
- def ShouldDisable(cls, possible_browser): # http://crbug.com/597656
- return (possible_browser.browser_type == 'reference' and
- possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X')
-
- @classmethod
- def Name(cls):
- return 'blink_style.key_mobile_sites'
-
-
-@benchmark.Enabled('android')
-class BlinkStylePolymer(perf_benchmark.PerfBenchmark):
- """Measures performance of Blink's style engine (CSS Parsing, Style Recalc,
- etc.) for Polymer cases.
- """
- test = blink_style.BlinkStyle
- page_set = page_sets.PolymerPageSet
-
- @classmethod
- def Name(cls):
- return 'blink_style.polymer'
« no previous file with comments | « tools/perf/benchmark.csv ('k') | tools/perf/measurements/blink_style.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698