| Index: tools/perf/benchmarks/system_health.py
|
| diff --git a/tools/perf/benchmarks/system_health.py b/tools/perf/benchmarks/system_health.py
|
| index 28bd93557f833ed78520a3e25a955483b5ce8db4..230cc9a8b6a08568082a5d86f04028d7ed743d68 100644
|
| --- a/tools/perf/benchmarks/system_health.py
|
| +++ b/tools/perf/benchmarks/system_health.py
|
| @@ -110,10 +110,16 @@ class MobileMemorySystemHealth(_MemorySystemHealthBenchmark):
|
|
|
| @classmethod
|
| def ShouldDisable(cls, possible_browser):
|
| - # http://crbug.com/612144 (reference on Nexus 5X).
|
| - return possible_browser.platform.GetDeviceTypeName() == 'Desktop' or (
|
| - possible_browser.browser_type == 'reference' and
|
| - possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X')
|
| + # http://crbug.com/612144
|
| + if (possible_browser.browser_type == 'reference' and
|
| + possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X'):
|
| + return True
|
| +
|
| + # http://crbug.com/629163
|
| + if possible_browser.platform.GetDeviceTypeName() == 'Nexus 9':
|
| + return True
|
| +
|
| + return possible_browser.platform.GetDeviceTypeName() == 'Desktop'
|
|
|
|
|
| @benchmark.Enabled('android-webview')
|
|
|