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

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

Issue 2098373002: Disable v8.google on Nexus 5/7. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/v8.py
diff --git a/tools/perf/benchmarks/v8.py b/tools/perf/benchmarks/v8.py
index 9795f6c69e1d88cb3dd132f9da6fa5a042b847c9..064cc678f1383c861c4e0c7a901e9b00078ab6b9 100644
--- a/tools/perf/benchmarks/v8.py
+++ b/tools/perf/benchmarks/v8.py
@@ -298,7 +298,13 @@ class V8Adword(perf_benchmark.PerfBenchmark):
@classmethod
def ShouldDisable(cls, possible_browser):
- return cls.IsSvelte(possible_browser) # http://crbug.com/596556
+ if cls.IsSvelte(possible_browser): # http://crbug.com/596556
+ return True
+ # http://crbug.com/623576
+ if (possible_browser.platform.GetDeviceTypeName() == 'Nexus 5' or
+ possible_browser.platform.GetDeviceTypeName() == 'Nexus 7'):
+ return True
+ return False
@classmethod
def ShouldTearDownStateAfterEachStoryRun(cls):
« 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