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

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

Issue 1428133005: [Telemetry] Allows concatenating multiple Disabled & Enabled decorators (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Dave's comment Created 5 years, 1 month 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/benchmarks/draw_properties.py ('k') | tools/perf/benchmarks/maps.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/gpu_times.py
diff --git a/tools/perf/benchmarks/gpu_times.py b/tools/perf/benchmarks/gpu_times.py
index 089bf3dd52f2820e774c43b0221bd0b01938c3b6..6dfd09027b4ec789975a9da47a7c3f1fbe237003 100644
--- a/tools/perf/benchmarks/gpu_times.py
+++ b/tools/perf/benchmarks/gpu_times.py
@@ -26,7 +26,7 @@ class _GPUTimes(perf_benchmark.PerfBenchmark):
options.SetTimelineBasedMetrics([gpu_timeline.GPUTimelineMetric()])
return options
-@benchmark.Disabled # http://crbug.com/453131, http://crbug.com/527543
+@benchmark.Disabled('all') # http://crbug.com/453131, http://crbug.com/527543
class GPUTimesKeyMobileSites(_GPUTimes):
"""Measures GPU timeline metric on key mobile sites."""
page_set = page_sets.KeyMobileSitesSmoothPageSet
@@ -35,7 +35,7 @@ class GPUTimesKeyMobileSites(_GPUTimes):
def Name(cls):
return 'gpu_times.key_mobile_sites_smooth'
-@benchmark.Disabled # http://crbug.com/453131, http://crbug.com/527543
+@benchmark.Disabled('all') # http://crbug.com/453131, http://crbug.com/527543
class GPUTimesGpuRasterizationKeyMobileSites(_GPUTimes):
"""Measures GPU timeline metric on key mobile sites with GPU rasterization.
"""
@@ -47,7 +47,7 @@ class GPUTimesGpuRasterizationKeyMobileSites(_GPUTimes):
def Name(cls):
return 'gpu_times.gpu_rasterization.key_mobile_sites_smooth'
-@benchmark.Disabled # http://crbug.com/453131, http://crbug.com/517476
+@benchmark.Disabled('all') # http://crbug.com/453131, http://crbug.com/517476
class GPUTimesTop25Sites(_GPUTimes):
"""Measures GPU timeline metric for the top 25 sites."""
page_set = page_sets.Top25SmoothPageSet
@@ -56,7 +56,7 @@ class GPUTimesTop25Sites(_GPUTimes):
def Name(cls):
return 'gpu_times.top_25_smooth'
-@benchmark.Disabled # http://crbug.com/453131, http://crbug.com/517476
+@benchmark.Disabled('all') # http://crbug.com/453131, http://crbug.com/517476
class GPUTimesGpuRasterizationTop25Sites(_GPUTimes):
"""Measures GPU timeline metric for the top 25 sites with GPU rasterization.
"""
« no previous file with comments | « tools/perf/benchmarks/draw_properties.py ('k') | tools/perf/benchmarks/maps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698