Commit 7157776b authored by wiltzius@chromium.org's avatar wiltzius@chromium.org

Re-enable Polymer benchmarks

Including the new Polymer widget sampler.

BUG=370725,380854,333078

Review URL: https://codereview.chromium.org/396783008

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283696 0039d316-1c4b-4281-b951-d872f2087c98
parent 7d0d3743
...@@ -66,7 +66,8 @@ class SmoothnessFastPathKeySilkCases(benchmark.Benchmark): ...@@ -66,7 +66,8 @@ class SmoothnessFastPathKeySilkCases(benchmark.Benchmark):
silk_flags.CustomizeBrowserOptionsForFastPath(options) silk_flags.CustomizeBrowserOptionsForFastPath(options)
@benchmark.Disabled('j') # crbug.com/363783 # GPU rasterization does not work on J devices
@benchmark.Disabled('j')
class SmoothnessGpuRasterizationTop25(benchmark.Benchmark): class SmoothnessGpuRasterizationTop25(benchmark.Benchmark):
"""Measures rendering statistics for the top 25 with GPU rasterization """Measures rendering statistics for the top 25 with GPU rasterization
""" """
...@@ -77,7 +78,8 @@ class SmoothnessGpuRasterizationTop25(benchmark.Benchmark): ...@@ -77,7 +78,8 @@ class SmoothnessGpuRasterizationTop25(benchmark.Benchmark):
silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
@benchmark.Disabled('j') # crbug.com/363783 # GPU rasterization does not work on J devices
@benchmark.Disabled('j')
class SmoothnessGpuRasterizationKeyMobileSites(benchmark.Benchmark): class SmoothnessGpuRasterizationKeyMobileSites(benchmark.Benchmark):
"""Measures rendering statistics for the key mobile sites with GPU """Measures rendering statistics for the key mobile sites with GPU
rasterization rasterization
...@@ -122,7 +124,6 @@ class SmoothnessToughPinchZoomCases(benchmark.Benchmark): ...@@ -122,7 +124,6 @@ class SmoothnessToughPinchZoomCases(benchmark.Benchmark):
page_set = page_sets.ToughPinchZoomCasesPageSet page_set = page_sets.ToughPinchZoomCasesPageSet
@benchmark.Disabled # crbug.com/370725
class SmoothnessPolymer(benchmark.Benchmark): class SmoothnessPolymer(benchmark.Benchmark):
"""Measures rendering statistics for Polymer cases. """Measures rendering statistics for Polymer cases.
""" """
...@@ -130,7 +131,6 @@ class SmoothnessPolymer(benchmark.Benchmark): ...@@ -130,7 +131,6 @@ class SmoothnessPolymer(benchmark.Benchmark):
page_set = page_sets.PolymerPageSet page_set = page_sets.PolymerPageSet
@benchmark.Disabled # crbug.com/370725
class SmoothnessFastPathPolymer(benchmark.Benchmark): class SmoothnessFastPathPolymer(benchmark.Benchmark):
"""Measures rendering statistics for the Polymer cases without GPU """Measures rendering statistics for the Polymer cases without GPU
rasterization using bleeding edge rendering fast paths. rasterization using bleeding edge rendering fast paths.
...@@ -141,8 +141,8 @@ class SmoothnessFastPathPolymer(benchmark.Benchmark): ...@@ -141,8 +141,8 @@ class SmoothnessFastPathPolymer(benchmark.Benchmark):
def CustomizeBrowserOptions(self, options): def CustomizeBrowserOptions(self, options):
silk_flags.CustomizeBrowserOptionsForFastPath(options) silk_flags.CustomizeBrowserOptionsForFastPath(options)
# GPU rasterization does not work on J devices
@benchmark.Disabled # crbug.com/370725 @benchmark.Disabled('j')
class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark): class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark):
"""Measures rendering statistics for the Polymer cases with GPU rasterization """Measures rendering statistics for the Polymer cases with GPU rasterization
""" """
...@@ -153,7 +153,6 @@ class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark): ...@@ -153,7 +153,6 @@ class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark):
silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
@benchmark.Disabled # crbug.com/370725
class SmoothnessFastPathGpuRasterizationPolymer( class SmoothnessFastPathGpuRasterizationPolymer(
SmoothnessGpuRasterizationPolymer): SmoothnessGpuRasterizationPolymer):
"""Measures rendering statistics for the Polymer cases with GPU rasterization """Measures rendering statistics for the Polymer cases with GPU rasterization
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment