| Index: tools/perf/benchmarks/smoothness.py
|
| diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py
|
| index 332a46b8a63acf9b2b9cfceec396187b6fb13f64..4eac7b6586edd02ad33add45993e8a77f64f55f3 100644
|
| --- a/tools/perf/benchmarks/smoothness.py
|
| +++ b/tools/perf/benchmarks/smoothness.py
|
| @@ -63,18 +63,6 @@ class SmoothnessKeySilkCases(benchmark.Benchmark):
|
|
|
|
|
| @benchmark.Enabled('android')
|
| -class SmoothnessFastPathKeySilkCases(benchmark.Benchmark):
|
| - """Measures rendering statistics for the key silk cases without GPU
|
| - rasterization using bleeding edge rendering fast paths.
|
| - """
|
| - tag = 'fast_path'
|
| - test = smoothness.Smoothness
|
| - page_set = page_sets.KeySilkCasesPageSet
|
| - def CustomizeBrowserOptions(self, options):
|
| - silk_flags.CustomizeBrowserOptionsForFastPath(options)
|
| -
|
| -
|
| -@benchmark.Enabled('android') # crbug.com/399125
|
| class SmoothnessGpuRasterizationTop25(benchmark.Benchmark):
|
| """Measures rendering statistics for the top 25 with GPU rasterization
|
| """
|
| @@ -85,7 +73,7 @@ class SmoothnessGpuRasterizationTop25(benchmark.Benchmark):
|
| silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
|
|
|
|
|
| -@benchmark.Enabled('android') # crbug.com/399125
|
| +@benchmark.Enabled('android')
|
| class SmoothnessGpuRasterizationKeyMobileSites(benchmark.Benchmark):
|
| """Measures rendering statistics for the key mobile sites with GPU
|
| rasterization
|
| @@ -97,31 +85,6 @@ class SmoothnessGpuRasterizationKeyMobileSites(benchmark.Benchmark):
|
| silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
|
|
|
|
|
| -@benchmark.Disabled # crbug.com/399125
|
| -class SmoothnessGpuRasterizationKeySilkCases(benchmark.Benchmark):
|
| - """Measures rendering statistics for the key silk cases with GPU rasterization
|
| - """
|
| - tag = 'gpu_rasterization'
|
| - test = smoothness.Smoothness
|
| - page_set = page_sets.KeySilkCasesPageSet
|
| - def CustomizeBrowserOptions(self, options):
|
| - silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
|
| -
|
| -
|
| -@benchmark.Disabled # crbug.com/399125
|
| -class SmoothnessFastPathGpuRasterizationKeySilkCases(
|
| - SmoothnessGpuRasterizationKeySilkCases):
|
| - """Measures rendering statistics for the key silk cases with GPU rasterization
|
| - using bleeding edge rendering fast paths.
|
| - """
|
| - tag = 'fast_path_gpu_rasterization'
|
| - test = smoothness.Smoothness
|
| - page_set = page_sets.KeySilkCasesPageSet
|
| - def CustomizeBrowserOptions(self, options):
|
| - super(SmoothnessFastPathGpuRasterizationKeySilkCases, self). \
|
| - CustomizeBrowserOptions(options)
|
| - silk_flags.CustomizeBrowserOptionsForFastPath(options)
|
| -
|
| @benchmark.Enabled('android')
|
| class SmoothnessSyncScrollKeyMobileSites(benchmark.Benchmark):
|
| """Measures rendering statistics for the key mobile sites with synchronous
|
| @@ -158,17 +121,6 @@ class SmoothnessPolymer(benchmark.Benchmark):
|
|
|
|
|
| @benchmark.Enabled('android')
|
| -class SmoothnessFastPathPolymer(benchmark.Benchmark):
|
| - """Measures rendering statistics for the Polymer cases without GPU
|
| - rasterization using bleeding edge rendering fast paths.
|
| - """
|
| - tag = 'fast_path'
|
| - test = smoothness.Smoothness
|
| - page_set = page_sets.PolymerPageSet
|
| - def CustomizeBrowserOptions(self, options):
|
| - silk_flags.CustomizeBrowserOptionsForFastPath(options)
|
| -
|
| -@benchmark.Enabled('android') # crbug.com/399125
|
| class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark):
|
| """Measures rendering statistics for the Polymer cases with GPU rasterization
|
| """
|
| @@ -177,18 +129,3 @@ class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark):
|
| page_set = page_sets.PolymerPageSet
|
| def CustomizeBrowserOptions(self, options):
|
| silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
|
| -
|
| -
|
| -@benchmark.Disabled # crbug.com/399125
|
| -class SmoothnessFastPathGpuRasterizationPolymer(
|
| - SmoothnessGpuRasterizationPolymer):
|
| - """Measures rendering statistics for the Polymer cases with GPU rasterization
|
| - using bleeding edge rendering fast paths.
|
| - """
|
| - tag = 'fast_path_gpu_rasterization'
|
| - test = smoothness.Smoothness
|
| - page_set = page_sets.PolymerPageSet
|
| - def CustomizeBrowserOptions(self, options):
|
| - super(SmoothnessFastPathGpuRasterizationPolymer, self). \
|
| - CustomizeBrowserOptions(options)
|
| - silk_flags.CustomizeBrowserOptionsForFastPath(options)
|
|
|