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

Unified Diff: environment.cfg.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: Vendor infra_libs into third_party Created 4 years, 4 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
« DEPS ('K') | « DEPS ('k') | masters/buildbot.tac » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: environment.cfg.py
diff --git a/environment.cfg.py b/environment.cfg.py
index 2ab7a4fac55a56cb547375fe56457b741dfe631f..bbd19b7b32690982aeb6fb56c3740577fe64cc51 100644
--- a/environment.cfg.py
+++ b/environment.cfg.py
@@ -21,24 +21,25 @@ def Extend(pythonpath, cwd):
]
# Add 'BUILD/third_party' paths.
- build_path += [os.path.join(third_party_base, *parts) for parts in (
- ('buildbot_8_4p1',),
- ('buildbot_slave_8_4',),
- ('jinja2',),
- ('markupsafe',),
- ('mock-1.0.1',),
- ('coverage-3.7.1',),
- ('twisted_10_2',),
- ('requests_2_10_0',),
- ('sqlalchemy_0_7_1',),
- ('sqlalchemy_migrate_0_7_1',),
- ('tempita_0_5',),
- ('decorator_3_3_1',),
- ('setuptools-0.6c11',),
- ('httplib2', 'python2',),
- ('oauth2client',),
- ('uritemplate',),
- ('google_api_python_client',),
- ('site-packages',),
+ build_path += [os.path.join(third_party_base, path) for path in (
+ 'buildbot_8_4p1',
+ 'buildbot_slave_8_4',
+ 'jinja2',
+ 'markupsafe',
+ 'mock-1.0.1',
+ 'coverage-3.7.1',
+ 'twisted_10_2',
+ 'requests_2_10_0',
+ 'sqlalchemy_0_7_1',
+ 'sqlalchemy_migrate_0_7_1',
+ 'tempita_0_5',
+ 'decorator_3_3_1',
+ 'setuptools-0.6c11',
+ 'httplib2/python2',
+ 'oauth2client',
+ 'uritemplate',
+ 'google_api_python_client',
+ 'site-packages',
+ 'infra_libs',
Sergey Berezin 2016/08/08 17:18:31 nit: sort alphabetically (I hope the order is not
dsansome 2016/08/09 04:29:04 I guess site-packages needs to go at the end, but
)]
return pythonpath.Append(*build_path)
« DEPS ('K') | « DEPS ('k') | masters/buildbot.tac » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698