Index: tools/perf/benchmarks/maps_earth.py |
diff --git a/tools/perf/benchmarks/maps_earth.py b/tools/perf/benchmarks/maps_earth.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..96d2f7c8ff40bc6aef1ec20feaf849e848cd5a14 |
--- /dev/null |
+++ b/tools/perf/benchmarks/maps_earth.py |
@@ -0,0 +1,23 @@ |
+# Copyright 2015 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+"""Runs a Google Maps/Earth performance test. |
+ |
+Surf Maps/Earth layer to exercise WebGL 3D model.""" |
+ |
+ |
+from measurements import no_op |
+import page_sets |
+from telemetry import benchmark |
+ |
+ |
+#@benchmark.Disabled |
+class MapsEarthBenchmark(benchmark.Benchmark): |
+ """Basic Google Maps/Earth benchmarks.""" |
+ test = no_op.NoOp |
+ page_set = page_sets.MapsEarthPageSet |
+ |
+ @classmethod |
+ def Name(cls): |
+ return 'maps_earth' |