Index: tools/perf/benchmarks/blink_style.py |
diff --git a/tools/perf/benchmarks/blink_style.py b/tools/perf/benchmarks/blink_style.py |
index 4682b4fe5e753a3c42b306084d6f94c4e528b485..e70da38faa457a6dc82ed6d2e8b152a168c422c9 100644 |
--- a/tools/perf/benchmarks/blink_style.py |
+++ b/tools/perf/benchmarks/blink_style.py |
@@ -7,7 +7,7 @@ from telemetry import benchmark |
from measurements import blink_style |
import page_sets |
-@benchmark.Disabled # http://crbug.com/479048 |
+@benchmark.Disabled('reference') # http://crbug.com/479048 |
class BlinkStyleTop25(benchmark.Benchmark): |
"""Measures performance of Blink's style engine (CSS Parsing, Style Recalc, |
etc.) on the top 25 pages. |
@@ -20,6 +20,7 @@ class BlinkStyleTop25(benchmark.Benchmark): |
return 'blink_style.top_25' |
+@benchmark.Disabled('reference') # http://crbug.com/479048 |
@benchmark.Enabled('android') |
class BlinkStyleKeyMobileSites(benchmark.Benchmark): |
"""Measures performance of Blink's style engine (CSS Parsing, Style Recalc, |
@@ -33,7 +34,8 @@ class BlinkStyleKeyMobileSites(benchmark.Benchmark): |
return 'blink_style.key_mobile_sites' |
-@benchmark.Disabled('mac', 'reference') # http://crbug.com/479048 |
+@benchmark.Disabled('reference') # http://crbug.com/479048 |
+@benchmark.Enabled('android') |
class BlinkStylePolymer(benchmark.Benchmark): |
"""Measures performance of Blink's style engine (CSS Parsing, Style Recalc, |
etc.) for Polymer cases. |