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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 'src/third_party/webrtc': | 215 'src/third_party/webrtc': |
216 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '407258cf7
82b0a8c24819835561a0a709ec70873', # commit position 9432 | 216 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '407258cf7
82b0a8c24819835561a0a709ec70873', # commit position 9432 |
217 | 217 |
218 'src/third_party/openmax_dl': | 218 'src/third_party/openmax_dl': |
219 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), | 219 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), |
220 | 220 |
221 'src/third_party/jsoncpp/source': | 221 'src/third_party/jsoncpp/source': |
222 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 | 222 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
223 | 223 |
224 'src/third_party/libyuv': | 224 'src/third_party/libyuv': |
225 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '632c50f29cdacb8c5872ce99
38444b676b4a0c81', # from svn revision 1407 | 225 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '6608c100e26389fd248e4646
912a418b38a61094', # version 1433 |
226 | 226 |
227 'src/third_party/smhasher/src': | 227 'src/third_party/smhasher/src': |
228 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', | 228 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', |
229 | 229 |
230 'src/third_party/libaddressinput/src': | 230 'src/third_party/libaddressinput/src': |
231 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '5eeeb797e79fa
01503fcdcbebdc50036fac023ef', | 231 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '5eeeb797e79fa
01503fcdcbebdc50036fac023ef', |
232 | 232 |
233 # These are all at libphonenumber r728. | 233 # These are all at libphonenumber r728. |
234 'src/third_party/libphonenumber/src/phonenumbers': | 234 'src/third_party/libphonenumber/src/phonenumbers': |
235 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', | 235 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', |
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 # migration completes (let's say Sep 1 2014). | 782 # migration completes (let's say Sep 1 2014). |
783 'name': 'check_git_config', | 783 'name': 'check_git_config', |
784 'pattern': '.', | 784 'pattern': '.', |
785 'action': [ | 785 'action': [ |
786 'python', | 786 'python', |
787 'src/tools/check_git_config.py', | 787 'src/tools/check_git_config.py', |
788 '--running-as-hook', | 788 '--running-as-hook', |
789 ], | 789 ], |
790 }, | 790 }, |
791 ] | 791 ] |
OLD | NEW |