| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 'src/third_party/webrtc': | 214 'src/third_party/webrtc': |
| 215 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '589fc70fc
8b616278a44c300ed45761f8f395d5b', # commit position 9630 | 215 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '589fc70fc
8b616278a44c300ed45761f8f395d5b', # commit position 9630 |
| 216 | 216 |
| 217 'src/third_party/openmax_dl': | 217 'src/third_party/openmax_dl': |
| 218 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), | 218 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), |
| 219 | 219 |
| 220 'src/third_party/jsoncpp/source': | 220 'src/third_party/jsoncpp/source': |
| 221 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 | 221 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
| 222 | 222 |
| 223 'src/third_party/libyuv': | 223 'src/third_party/libyuv': |
| 224 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '3a3a89ccd40764579077e93b
c303564c873aa7c1', # from version 1450 | 224 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + 'e40384b6d9667401a010b9ef
7db16bf56bf5deab', # from version 1459 |
| 225 | 225 |
| 226 'src/third_party/smhasher/src': | 226 'src/third_party/smhasher/src': |
| 227 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', | 227 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', |
| 228 | 228 |
| 229 'src/third_party/libaddressinput/src': | 229 'src/third_party/libaddressinput/src': |
| 230 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '5eeeb797e79fa
01503fcdcbebdc50036fac023ef', | 230 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '5eeeb797e79fa
01503fcdcbebdc50036fac023ef', |
| 231 | 231 |
| 232 # These are all at libphonenumber r728. | 232 # These are all at libphonenumber r728. |
| 233 'src/third_party/libphonenumber/src/phonenumbers': | 233 'src/third_party/libphonenumber/src/phonenumbers': |
| 234 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', | 234 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', |
| (...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 'name': 'check_git_config', | 799 'name': 'check_git_config', |
| 800 'pattern': '.', | 800 'pattern': '.', |
| 801 'action': [ | 801 'action': [ |
| 802 'python', | 802 'python', |
| 803 'src/tools/check_git_config.py', | 803 'src/tools/check_git_config.py', |
| 804 '--running-as-hook', | 804 '--running-as-hook', |
| 805 ], | 805 ], |
| 806 }, | 806 }, |
| 807 ] | 807 ] |
| 808 | 808 |
| OLD | NEW |