| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 'src/third_party/webrtc': | 227 'src/third_party/webrtc': |
| 228 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '95797c571
819af56d1c15beebc503c57e8ca1df4', # commit position 9390 | 228 Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + '95797c571
819af56d1c15beebc503c57e8ca1df4', # commit position 9390 |
| 229 | 229 |
| 230 'src/third_party/openmax_dl': | 230 'src/third_party/openmax_dl': |
| 231 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), | 231 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), |
| 232 | 232 |
| 233 'src/third_party/jsoncpp/source': | 233 'src/third_party/jsoncpp/source': |
| 234 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 | 234 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
| 235 | 235 |
| 236 'src/third_party/libyuv': | 236 'src/third_party/libyuv': |
| 237 Var('chromium_git') + '/external/libyuv.git' + '@' + '632c50f29cdacb8c5872ce
9938444b676b4a0c81', # from svn revision 1407 | 237 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '632c50f29cdacb8c5872ce99
38444b676b4a0c81', # from svn revision 1407 |
| 238 | 238 |
| 239 'src/third_party/smhasher/src': | 239 'src/third_party/smhasher/src': |
| 240 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', | 240 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', |
| 241 | 241 |
| 242 'src/third_party/libaddressinput/src': | 242 'src/third_party/libaddressinput/src': |
| 243 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '61f63da7ae6fa
469138d60dec5d6bbecc6ab43d6', | 243 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '61f63da7ae6fa
469138d60dec5d6bbecc6ab43d6', |
| 244 | 244 |
| 245 # These are all at libphonenumber r728. | 245 # These are all at libphonenumber r728. |
| 246 'src/third_party/libphonenumber/src/phonenumbers': | 246 'src/third_party/libphonenumber/src/phonenumbers': |
| 247 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', | 247 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 # corresponding .py files have already been deleted. | 781 # corresponding .py files have already been deleted. |
| 782 'name': 'remove_stale_pyc_files', | 782 'name': 'remove_stale_pyc_files', |
| 783 'pattern': 'src/tools/.*\\.py', | 783 'pattern': 'src/tools/.*\\.py', |
| 784 'action': [ | 784 'action': [ |
| 785 'python', | 785 'python', |
| 786 'src/tools/remove_stale_pyc_files.py', | 786 'src/tools/remove_stale_pyc_files.py', |
| 787 'src/tools', | 787 'src/tools', |
| 788 ], | 788 ], |
| 789 }, | 789 }, |
| 790 ] | 790 ] |
| OLD | NEW |