OLD | NEW |
1 # This file is used to manage the dependencies of the Chromium src repo. It is | 1 # This file is used to manage the dependencies of the Chromium src repo. It is |
2 # used by gclient to determine what version of each dependency to check out, and | 2 # used by gclient to determine what version of each dependency to check out, and |
3 # where. | 3 # where. |
4 # | 4 # |
5 # For more information, please refer to the official documentation: | 5 # For more information, please refer to the official documentation: |
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code | 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
7 # | 7 # |
8 # When adding a new dependency, please update the top-level .gitignore file | 8 # When adding a new dependency, please update the top-level .gitignore file |
9 # to list the dependency's destination directory. | 9 # to list the dependency's destination directory. |
10 # | 10 # |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 'src/third_party/webrtc': | 236 'src/third_party/webrtc': |
237 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '0f0717170
6abb5174bdf002eee928b4852fc6c22', | 237 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '0f0717170
6abb5174bdf002eee928b4852fc6c22', |
238 | 238 |
239 'src/third_party/openmax_dl': | 239 'src/third_party/openmax_dl': |
240 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), | 240 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), |
241 | 241 |
242 'src/third_party/jsoncpp/source': | 242 'src/third_party/jsoncpp/source': |
243 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 | 243 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
244 | 244 |
245 'src/third_party/libyuv': | 245 'src/third_party/libyuv': |
246 Var('chromium_git') + '/external/libyuv.git' + '@' + '32ad6e0e12fec058efdf85
a5a4b32ed657f27c36', # from svn revision 1368 | 246 Var('chromium_git') + '/external/libyuv.git' + '@' + '01db3d1d1ddd3f2907a46a
41f24add5143b518d5', # from svn revision 1374 |
247 | 247 |
248 'src/third_party/smhasher/src': | 248 'src/third_party/smhasher/src': |
249 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', | 249 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', |
250 | 250 |
251 'src/third_party/libaddressinput/src': | 251 'src/third_party/libaddressinput/src': |
252 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '61f63da7ae6fa
469138d60dec5d6bbecc6ab43d6', | 252 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '61f63da7ae6fa
469138d60dec5d6bbecc6ab43d6', |
253 | 253 |
254 # These are all at libphonenumber r728. | 254 # These are all at libphonenumber r728. |
255 'src/third_party/libphonenumber/src/phonenumbers': | 255 'src/third_party/libphonenumber/src/phonenumbers': |
256 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', | 256 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
786 # corresponding .py files have already been deleted. | 786 # corresponding .py files have already been deleted. |
787 'name': 'remove_stale_pyc_files', | 787 'name': 'remove_stale_pyc_files', |
788 'pattern': 'src/tools/.*\\.py', | 788 'pattern': 'src/tools/.*\\.py', |
789 'action': [ | 789 'action': [ |
790 'python', | 790 'python', |
791 'src/tools/remove_stale_pyc_files.py', | 791 'src/tools/remove_stale_pyc_files.py', |
792 'src/tools', | 792 'src/tools', |
793 ], | 793 ], |
794 }, | 794 }, |
795 ] | 795 ] |
OLD | NEW |