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