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

Unified Diff: tools/run-bisect-manual-test.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: more rebase 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 | « tools/perf/record_android_profile.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-bisect-manual-test.py
diff --git a/tools/run-bisect-manual-test.py b/tools/run-bisect-manual-test.py
index 9ba33763300f4bc1d483bf192dfa85108509f500..e1e6aeb6121502fc18699b90506d44a3a1410030 100755
--- a/tools/run-bisect-manual-test.py
+++ b/tools/run-bisect-manual-test.py
@@ -28,7 +28,9 @@ _TOOLS_DIR = os.path.abspath(os.path.dirname(__file__))
_BISECT_SCRIPT_PATH = os.path.join(
_TOOLS_DIR, 'auto_bisect', 'bisect_perf_regression.py')
-sys.path.append(os.path.join(_TOOLS_DIR, 'telemetry'))
+sys.path.append(os.path.join(_TOOLS_DIR, 'perf'))
+from chrome_telemetry_build import chromium_config
+sys.path.append(chromium_config.GetTelemetryDir())
from telemetry.internal.browser import browser_options
« no previous file with comments | « tools/perf/record_android_profile.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698