Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Unified Diff: tools/telemetry/telemetry/core/environment.py

Issue 274773002: [telemetry] Prototype for specifying page sets using Python imports and Telemetry discovery. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/telemetry/telemetry/core/discover_unittest.py ('k') | tools/telemetry/telemetry/core/util.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/environment.py
diff --git a/tools/telemetry/telemetry/core/environment.py b/tools/telemetry/telemetry/core/environment.py
deleted file mode 100644
index 284dba7194155b884299358ae877b8ca29295d2d..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/core/environment.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright (c) 2014 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.
-
-
-class Environment(object):
- def __init__(self, base_paths, test_aliases=None):
- self._base_paths = base_paths
- if test_aliases:
- self._test_aliases = test_aliases
- else:
- self._test_aliases = {}
-
- @property
- def base_paths(self):
- return self._base_paths
-
- @property
- def test_aliases(self):
- return self._test_aliases
« no previous file with comments | « tools/telemetry/telemetry/core/discover_unittest.py ('k') | tools/telemetry/telemetry/core/util.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698