Chromium Code Reviews| 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) |