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

Unified Diff: tools/telemetry/telemetry/project_config.py

Issue 1647513002: Delete tools/telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
Index: tools/telemetry/telemetry/project_config.py
diff --git a/tools/telemetry/telemetry/project_config.py b/tools/telemetry/telemetry/project_config.py
deleted file mode 100644
index a391e8181ba39c557a018ef846057baad545aaab..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/project_config.py
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2013 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 ProjectConfig(object):
- """Contains information about the benchmark runtime environment.
-
- Attributes:
- top_level_dir: A dir that contains benchmark, page test, and/or story
- set dirs and associated artifacts.
- benchmark_dirs: A list of dirs containing benchmarks.
- benchmark_aliases: A dict of name:alias string pairs to be matched against
- exactly during benchmark selection.
- client_config: A path to a ProjectDependencies json file.
- default_chrome_root: A path to chromium source directory. Many telemetry
- features depend on chromium source tree's presence and those won't work
- in case this is not specified.
- """
- def __init__(self, top_level_dir, benchmark_dirs=None,
- benchmark_aliases=None, client_config=None,
- default_chrome_root=None):
- self._top_level_dir = top_level_dir
- self._benchmark_dirs = benchmark_dirs or []
- self._benchmark_aliases = benchmark_aliases or dict()
- self._client_config = client_config or ''
- self._default_chrome_root = default_chrome_root
-
- @property
- def top_level_dir(self):
- return self._top_level_dir
-
- @property
- def benchmark_dirs(self):
- return self._benchmark_dirs
-
- @property
- def benchmark_aliases(self):
- return self._benchmark_aliases
-
- @property
- def client_config(self):
- return self._client_config
-
- @property
- def default_chrome_root(self):
- return self._default_chrome_root
« no previous file with comments | « tools/telemetry/telemetry/page/shared_page_state_unittest.py ('k') | tools/telemetry/telemetry/record_wpr.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698