| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import os | 4 import os |
| 5 import re | 5 import re |
| 6 | 6 |
| 7 from core import path_util | 7 from core import path_util |
| 8 from core import perf_benchmark | 8 from core import perf_benchmark |
| 9 from page_sets import google_pages | 9 from page_sets import google_pages |
| 10 | 10 |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 # TODO(petrcermak): Remove the 'subsystem' disjunct once | 232 # TODO(petrcermak): Remove the 'subsystem' disjunct once |
| 233 # https://codereview.chromium.org/2018503002/ lands in Catapult and rolls | 233 # https://codereview.chromium.org/2018503002/ lands in Catapult and rolls |
| 234 # into Chromium. | 234 # into Chromium. |
| 235 if (('subsystem' in value.name or 'reported_by_chrome' in value.name) and | 235 if (('subsystem' in value.name or 'reported_by_chrome' in value.name) and |
| 236 'v8' not in value.name): | 236 'v8' not in value.name): |
| 237 return False # Drop non-V8 values reported by Chrome. | 237 return False # Drop non-V8 values reported by Chrome. |
| 238 # Keep dump counts and average+max of process counts, vmstats and v8. | 238 # Keep dump counts and average+max of process counts, vmstats and v8. |
| 239 return not cls._IGNORED_V8_STATS_RE.search(value.name) | 239 return not cls._IGNORED_V8_STATS_RE.search(value.name) |
| 240 | 240 |
| 241 | 241 |
| 242 @benchmark.Disabled('reference', | 242 @benchmark.Enabled('android') |
| 243 'mac') # crbug.com/630854 | |
| 244 class V8MobileCodeSizeIgnition(_V8MemoryAndCodeSizeBenchmark): | 243 class V8MobileCodeSizeIgnition(_V8MemoryAndCodeSizeBenchmark): |
| 245 """Measures V8 heap and code size with ignition enabled on mobile web pages. | 244 """Measures V8 heap and code size with ignition enabled on mobile web pages. |
| 246 | 245 |
| 247 http://www.chromium.org/developers/design-documents/rendering-benchmarks | 246 http://www.chromium.org/developers/design-documents/rendering-benchmarks |
| 248 """ | 247 """ |
| 249 | 248 |
| 250 def SetExtraBrowserOptions(self, options): | 249 def SetExtraBrowserOptions(self, options): |
| 251 super(V8MobileCodeSizeIgnition, self).SetExtraBrowserOptions(options) | 250 super(V8MobileCodeSizeIgnition, self).SetExtraBrowserOptions(options) |
| 252 v8_helper.EnableIgnition(options) | 251 v8_helper.EnableIgnition(options) |
| 253 | 252 |
| 254 @classmethod | 253 @classmethod |
| 255 def Name(cls): | 254 def Name(cls): |
| 256 return 'top_10_mobile_memory_ignition' | 255 return 'top_10_mobile_memory_ignition' |
| 257 | 256 |
| 258 | 257 |
| 259 @benchmark.Disabled('reference', | 258 @benchmark.Enabled('android') |
| 260 'mac') # crbug.com/630854 | |
| 261 class V8MobileCodeSize(_V8MemoryAndCodeSizeBenchmark): | 259 class V8MobileCodeSize(_V8MemoryAndCodeSizeBenchmark): |
| 262 """Measures V8 heap and code size on mobile web pages. | 260 """Measures V8 heap and code size on mobile web pages. |
| 263 | 261 |
| 264 http://www.chromium.org/developers/design-documents/rendering-benchmarks | 262 http://www.chromium.org/developers/design-documents/rendering-benchmarks |
| 265 """ | 263 """ |
| 266 | 264 |
| 267 @classmethod | 265 @classmethod |
| 268 def Name(cls): | 266 def Name(cls): |
| 269 return 'top_10_mobile_memory' | 267 return 'top_10_mobile_memory' |
| 270 | 268 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 299 return True | 297 return True |
| 300 # http://crbug.com/623576 | 298 # http://crbug.com/623576 |
| 301 if (possible_browser.platform.GetDeviceTypeName() == 'Nexus 5' or | 299 if (possible_browser.platform.GetDeviceTypeName() == 'Nexus 5' or |
| 302 possible_browser.platform.GetDeviceTypeName() == 'Nexus 7'): | 300 possible_browser.platform.GetDeviceTypeName() == 'Nexus 7'): |
| 303 return True | 301 return True |
| 304 return False | 302 return False |
| 305 | 303 |
| 306 @classmethod | 304 @classmethod |
| 307 def ShouldTearDownStateAfterEachStoryRun(cls): | 305 def ShouldTearDownStateAfterEachStoryRun(cls): |
| 308 return True | 306 return True |
| OLD | NEW |