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' + '@' + '1cd890603
77a9f75aa5e690aed15739408bf2cdb', # commit position 9488 | 216 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '1cd890603
77a9f75aa5e690aed15739408bf2cdb', # commit position 9488 |
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' + '@' + 'a0fca88b1dbaf28658500bfe
04bb9f7fbb3b22f2', # from svn revision 1434 | 225 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '6dde4f14bd3b3d1777a371fe
abbe8130bc043dfa', # from svn revision 1437 |
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 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 # migration completes (let's say Sep 1 2014). | 787 # migration completes (let's say Sep 1 2014). |
788 'name': 'check_git_config', | 788 'name': 'check_git_config', |
789 'pattern': '.', | 789 'pattern': '.', |
790 'action': [ | 790 'action': [ |
791 'python', | 791 'python', |
792 'src/tools/check_git_config.py', | 792 'src/tools/check_git_config.py', |
793 '--running-as-hook', | 793 '--running-as-hook', |
794 ], | 794 ], |
795 }, | 795 }, |
796 ] | 796 ] |
OLD | NEW |