| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 multiprocessing | 4 import multiprocessing |
| 5 | 5 |
| 6 from core import perf_benchmark | 6 from core import perf_benchmark |
| 7 | 7 |
| 8 from benchmarks import silk_flags | 8 from benchmarks import silk_flags |
| 9 from measurements import smoothness | 9 from measurements import smoothness |
| 10 import page_sets | 10 import page_sets |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 @benchmark.Disabled('win-reference') # crbug.com/612810 | 120 @benchmark.Disabled('win-reference') # crbug.com/612810 |
| 121 @benchmark.Owner(emails=['kbr@chromium.org', 'zmo@chromium.org']) | 121 @benchmark.Owner(emails=['kbr@chromium.org', 'zmo@chromium.org']) |
| 122 class SmoothnessToughWebGLCases(_Smoothness): | 122 class SmoothnessToughWebGLCases(_Smoothness): |
| 123 page_set = page_sets.ToughWebglCasesPageSet | 123 page_set = page_sets.ToughWebglCasesPageSet |
| 124 | 124 |
| 125 @classmethod | 125 @classmethod |
| 126 def Name(cls): | 126 def Name(cls): |
| 127 return 'smoothness.tough_webgl_cases' | 127 return 'smoothness.tough_webgl_cases' |
| 128 | 128 |
| 129 | 129 |
| 130 @benchmark.Disabled('win') # http://crbug.com/692663 | |
| 131 @benchmark.Disabled('android-webview') # http://crbug.com/653933 | 130 @benchmark.Disabled('android-webview') # http://crbug.com/653933 |
| 132 @benchmark.Owner(emails=['kbr@chromium.org', 'zmo@chromium.org']) | 131 @benchmark.Owner(emails=['kbr@chromium.org', 'zmo@chromium.org']) |
| 133 class SmoothnessMaps(perf_benchmark.PerfBenchmark): | 132 class SmoothnessMaps(perf_benchmark.PerfBenchmark): |
| 134 page_set = page_sets.MapsPageSet | 133 page_set = page_sets.MapsPageSet |
| 135 | 134 |
| 136 @classmethod | 135 @classmethod |
| 137 def Name(cls): | 136 def Name(cls): |
| 138 return 'smoothness.maps' | 137 return 'smoothness.maps' |
| 139 | 138 |
| 140 | 139 |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 https://docs.google.com/a/chromium.org/document/d/ | 552 https://docs.google.com/a/chromium.org/document/d/ |
| 554 17yhE5Po9By0sCdM1yZT3LiUECaUr_94rQt9j-4tOQIM/view""" | 553 17yhE5Po9By0sCdM1yZT3LiUECaUr_94rQt9j-4tOQIM/view""" |
| 555 page_set = page_sets.ToughSchedulingCasesPageSet | 554 page_set = page_sets.ToughSchedulingCasesPageSet |
| 556 | 555 |
| 557 @classmethod | 556 @classmethod |
| 558 def Name(cls): | 557 def Name(cls): |
| 559 # This should be smoothness.tough_scheduling_cases but since the benchmark | 558 # This should be smoothness.tough_scheduling_cases but since the benchmark |
| 560 # has been named this way for long time, we keep the name as-is to avoid | 559 # has been named this way for long time, we keep the name as-is to avoid |
| 561 # data migration. | 560 # data migration. |
| 562 return 'scheduler.tough_scheduling_cases' | 561 return 'scheduler.tough_scheduling_cases' |
| OLD | NEW |