| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 @benchmark.Disabled('win-reference') # crbug.com/612810 | 108 @benchmark.Disabled('win-reference') # crbug.com/612810 |
| 109 class SmoothnessToughWebGLCases(_Smoothness): | 109 class SmoothnessToughWebGLCases(_Smoothness): |
| 110 page_set = page_sets.ToughWebglCasesPageSet | 110 page_set = page_sets.ToughWebglCasesPageSet |
| 111 | 111 |
| 112 @classmethod | 112 @classmethod |
| 113 def Name(cls): | 113 def Name(cls): |
| 114 return 'smoothness.tough_webgl_cases' | 114 return 'smoothness.tough_webgl_cases' |
| 115 | 115 |
| 116 | 116 |
| 117 @benchmark.Enabled('android') | 117 @benchmark.Enabled('android') |
| 118 @benchmark.Disabled('android-webview') # http://crbug.com/653933 |
| 118 class SmoothnessMaps(perf_benchmark.PerfBenchmark): | 119 class SmoothnessMaps(perf_benchmark.PerfBenchmark): |
| 119 page_set = page_sets.MapsPageSet | 120 page_set = page_sets.MapsPageSet |
| 120 | 121 |
| 121 @classmethod | 122 @classmethod |
| 122 def Name(cls): | 123 def Name(cls): |
| 123 return 'smoothness.maps' | 124 return 'smoothness.maps' |
| 124 | 125 |
| 125 | 126 |
| 126 @benchmark.Disabled('android', | 127 @benchmark.Disabled('android', |
| 127 'mac') # crbug.com/567802 | 128 'mac') # crbug.com/567802 |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 """Measures rendering statistics while scrolling advertisements.""" | 487 """Measures rendering statistics while scrolling advertisements.""" |
| 487 page_set = page_sets.SyntheticToughWebglAdCasesPageSet | 488 page_set = page_sets.SyntheticToughWebglAdCasesPageSet |
| 488 | 489 |
| 489 @classmethod | 490 @classmethod |
| 490 def Name(cls): | 491 def Name(cls): |
| 491 return 'smoothness.tough_webgl_ad_cases' | 492 return 'smoothness.tough_webgl_ad_cases' |
| 492 | 493 |
| 493 @classmethod | 494 @classmethod |
| 494 def ShouldDisable(cls, possible_browser): | 495 def ShouldDisable(cls, possible_browser): |
| 495 return cls.IsSvelte(possible_browser) # http://crbug.com/574485 | 496 return cls.IsSvelte(possible_browser) # http://crbug.com/574485 |
| OLD | NEW |