Index: tools/perf/page_sets/system_health/platforms.py |
diff --git a/tools/perf/page_sets/system_health/platforms.py b/tools/perf/page_sets/system_health/platforms.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5fbe232c682bf080add97a012686147995256073 |
--- /dev/null |
+++ b/tools/perf/page_sets/system_health/platforms.py |
@@ -0,0 +1,10 @@ |
+# Copyright 2016 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. |
+ |
+DESKTOP = 'desktop' |
+MOBILE = 'mobile' |
+ALL_PLATFORMS = frozenset({DESKTOP, MOBILE}) |
petrcermak
2016/07/08 10:04:31
supernit: Can you please add a blank line above AL
ulan
2016/07/08 10:34:21
Done.
|
+DESKTOP_ONLY = frozenset({DESKTOP}) |
+MOBILE_ONLY = frozenset({MOBILE}) |
+NO_PLATFORMS = frozenset() |