| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Extension script to <build>/scripts/common/env.py to add 'build_internal' | 5 """Extension script to <build>/scripts/common/env.py to add 'build_internal' |
| 6 paths. | 6 paths. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 import os | 9 import os |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 'decorator_3_3_1', | 28 'decorator_3_3_1', |
| 29 'google_api_python_client', | 29 'google_api_python_client', |
| 30 'httplib2/python2', | 30 'httplib2/python2', |
| 31 'infra_libs', | 31 'infra_libs', |
| 32 'jinja2', | 32 'jinja2', |
| 33 'markupsafe', | 33 'markupsafe', |
| 34 'mock-1.0.1', | 34 'mock-1.0.1', |
| 35 'oauth2client', | 35 'oauth2client', |
| 36 'pyasn1', | 36 'pyasn1', |
| 37 'pyasn1-modules', | 37 'pyasn1-modules', |
| 38 'python-rsa', |
| 38 'requests_2_10_0', | 39 'requests_2_10_0', |
| 39 'setuptools-0.6c11', | 40 'setuptools-0.6c11', |
| 40 'sqlalchemy_0_7_1', | 41 'sqlalchemy_0_7_1', |
| 41 'sqlalchemy_migrate_0_7_1', | 42 'sqlalchemy_migrate_0_7_1', |
| 42 'tempita_0_5', | 43 'tempita_0_5', |
| 43 'twisted_10_2', | 44 'twisted_10_2', |
| 44 'uritemplate', | 45 'uritemplate', |
| 45 | 46 |
| 46 'site-packages', | 47 'site-packages', |
| 47 )] | 48 )] |
| 48 return pythonpath.Append(*build_path) | 49 return pythonpath.Append(*build_path) |
| OLD | NEW |