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

Unified Diff: tools/perf/fetch_benchmark_deps.py

Issue 1582793006: [Telemetry] Update all clients to use chromium_config.GetTelemetryDir() (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/perf/fetch_benchmark_deps.py
diff --git a/tools/perf/fetch_benchmark_deps.py b/tools/perf/fetch_benchmark_deps.py
index ac6bd815abbe871c15b09bfd8f53dc81c2b8dea0..b904d2169c68514cf6addaa662e8466eebbdfc88 100755
--- a/tools/perf/fetch_benchmark_deps.py
+++ b/tools/perf/fetch_benchmark_deps.py
@@ -8,9 +8,11 @@
import os
import sys
-sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'telemetry'))
+from chrome_telemetry_build import chromium_config
+sys.path.insert(1, chromium_config.GetTelemetryDir())
from catapult_base import cloud_storage
+
aiolos (Not reviewing) 2016/01/15 00:33:04 catapult_base and telemetry are arguably the same
eakuefner 2016/01/19 17:21:18 Outside of Catapult, these are all just third-part
from telemetry import benchmark_runner

Powered by Google App Engine
This is Rietveld 408576698