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

Unified Diff: tools/perf/core/path_util.py

Issue 1383773002: [Telemetry] Update tools/perf/fetch_benchmark_deps.py to use client_config (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Kari's comment 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
« no previous file with comments | « no previous file | tools/perf/fetch_benchmark_deps.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/core/path_util.py
diff --git a/tools/perf/core/path_util.py b/tools/perf/core/path_util.py
index b3aee1e77a91ba0f7b06c5d6348616498d0606a2..8376090c107b2c1992f698110c240e769a1fba17 100644
--- a/tools/perf/core/path_util.py
+++ b/tools/perf/core/path_util.py
@@ -9,15 +9,22 @@ def GetChromiumSrcDir():
return os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(
os.path.abspath(__file__)))))
+
def GetTelemetryDir():
return os.path.join(GetChromiumSrcDir(), 'tools', 'telemetry')
+
def GetPerfDir():
return os.path.join(GetChromiumSrcDir(), 'tools', 'perf')
+
def GetPerfStorySetsDir():
return os.path.join(GetPerfDir(), 'page_sets')
+
def GetPerfBenchmarksDir():
return os.path.join(GetPerfDir(), 'benchmarks')
+
+def GetPerfClientConfigPath():
+ return os.path.join(GetPerfDir(), 'core', 'binary_dependencies.json')
« no previous file with comments | « no previous file | tools/perf/fetch_benchmark_deps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698