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 | 5 |
6 from core import path_util | 6 from core import path_util |
7 from core import perf_benchmark | 7 from core import perf_benchmark |
8 from page_sets import google_pages | 8 from page_sets import google_pages |
9 | 9 |
10 from benchmarks import v8_helper | 10 from benchmarks import v8_helper |
(...skipping 25 matching lines...) Expand all Loading... |
36 | 36 |
37 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" | 37 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" |
38 test = v8_gc_times.V8GCTimes | 38 test = v8_gc_times.V8GCTimes |
39 page_set = page_sets.V8Top25SmoothPageSet | 39 page_set = page_sets.V8Top25SmoothPageSet |
40 | 40 |
41 @classmethod | 41 @classmethod |
42 def Name(cls): | 42 def Name(cls): |
43 return 'v8.top_25_smooth' | 43 return 'v8.top_25_smooth' |
44 | 44 |
45 | 45 |
46 @benchmark.Enabled('android') | 46 @benchmark.Disabled('all') # crbug.com/702194 |
| 47 #@benchmark.Enabled('android') |
47 @benchmark.Owner(emails=['hpayer@chromium.org', 'rmcilroy@chromium.org']) | 48 @benchmark.Owner(emails=['hpayer@chromium.org', 'rmcilroy@chromium.org']) |
48 class V8KeyMobileSites(perf_benchmark.PerfBenchmark): | 49 class V8KeyMobileSites(perf_benchmark.PerfBenchmark): |
49 """Measures V8 GC metrics on the while scrolling down key mobile sites. | 50 """Measures V8 GC metrics on the while scrolling down key mobile sites. |
50 | 51 |
51 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" | 52 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" |
52 test = v8_gc_times.V8GCTimes | 53 test = v8_gc_times.V8GCTimes |
53 page_set = page_sets.KeyMobileSitesSmoothPageSet | 54 page_set = page_sets.KeyMobileSitesSmoothPageSet |
54 | 55 |
55 @classmethod | 56 @classmethod |
56 def Name(cls): | 57 def Name(cls): |
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 Designed to represent a mix between top websites and a set of pages that | 356 Designed to represent a mix between top websites and a set of pages that |
356 have unique V8 characteristics. | 357 have unique V8 characteristics. |
357 """ | 358 """ |
358 | 359 |
359 @classmethod | 360 @classmethod |
360 def Name(cls): | 361 def Name(cls): |
361 return 'v8.runtime_stats.top_25' | 362 return 'v8.runtime_stats.top_25' |
362 | 363 |
363 def CreateStorySet(self, options): | 364 def CreateStorySet(self, options): |
364 return page_sets.V8Top25StorySet() | 365 return page_sets.V8Top25StorySet() |
OLD | NEW |