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

Side by Side Diff: tools/perf/benchmarks/v8_browsing.py

Issue 2155163003: [perfbot sheriff] Disable v8.browsing_mobile and sh.memory_mobile on N9 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « tools/perf/benchmarks/system_health.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import re 5 import re
6 6
7 from core import perf_benchmark 7 from core import perf_benchmark
8 from telemetry.timeline import chrome_trace_config 8 from telemetry.timeline import chrome_trace_config
9 from telemetry.timeline import chrome_trace_category_filter 9 from telemetry.timeline import chrome_trace_category_filter
10 from telemetry.web_perf import timeline_based_measurement 10 from telemetry.web_perf import timeline_based_measurement
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 @classmethod 86 @classmethod
87 def ShouldDisable(cls, possible_browser): 87 def ShouldDisable(cls, possible_browser):
88 return possible_browser.platform.GetDeviceTypeName() != 'Desktop' 88 return possible_browser.platform.GetDeviceTypeName() != 'Desktop'
89 89
90 90
91 class V8MobileBrowsingBenchmark(_V8BrowsingBenchmark): 91 class V8MobileBrowsingBenchmark(_V8BrowsingBenchmark):
92 PLATFORM = 'mobile' 92 PLATFORM = 'mobile'
93 93
94 @classmethod 94 @classmethod
95 def ShouldDisable(cls, possible_browser): 95 def ShouldDisable(cls, possible_browser):
96 # http://crbug.com/629163
97 if possible_browser.platform.GetDeviceTypeName() == 'Nexus 9':
98 return True
99
96 return possible_browser.platform.GetDeviceTypeName() == 'Desktop' 100 return possible_browser.platform.GetDeviceTypeName() == 'Desktop'
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/system_health.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698