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

Unified Diff: scripts/common/env.py

Issue 2103073002: Make Buildbot masters send ts_mon metrics, and add standard HTTP server metrics. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@buildbot-tsmon
Patch Set: CL comments Created 4 years, 6 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: scripts/common/env.py
diff --git a/scripts/common/env.py b/scripts/common/env.py
index 76d93a0ca8d885b5d046e21ed7412016deed3a68..eb66cfd24b3ba0058967b6578e5f247a36878731 100755
--- a/scripts/common/env.py
+++ b/scripts/common/env.py
@@ -65,6 +65,7 @@ def path_if(*args):
Build = path_if(os.path.dirname(__file__), os.pardir, os.pardir)
# The path to the <build_internal> directory.
BuildInternal = path_if(Build, os.pardir, 'build_internal')
+Infra = path_if(Build, os.pardir, 'infra')
def SetPythonPathEnv(value):
@@ -371,6 +372,7 @@ def GetInfraPythonPath(hermetic=True, master_dir=None):
if master_dir:
path += GetMasterPythonPath(master_dir)
path += GetBuildPythonPath()
+ path += Infra
path += GetSysPythonPath(hermetic=hermetic)
return path

Powered by Google App Engine
This is Rietveld 408576698