| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 'src/third_party/openmax_dl': | 241 'src/third_party/openmax_dl': |
| 242 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), | 242 Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@'
+ Var('openmax_dl_revision'), |
| 243 | 243 |
| 244 'src/third_party/jsoncpp/source/include': | 244 'src/third_party/jsoncpp/source/include': |
| 245 Var('chromium_git') + '/external/jsoncpp/jsoncpp/include.git' + '@' + 'b0dd4
8e02b6e6248328db78a65b5c601f150c349', | 245 Var('chromium_git') + '/external/jsoncpp/jsoncpp/include.git' + '@' + 'b0dd4
8e02b6e6248328db78a65b5c601f150c349', |
| 246 | 246 |
| 247 'src/third_party/jsoncpp/source/src/lib_json': | 247 'src/third_party/jsoncpp/source/src/lib_json': |
| 248 Var('chromium_git') + '/external/jsoncpp/jsoncpp/src/lib_json.git' + '@' + '
a8caa51ba2f80971a45880425bf2ae864a786784', | 248 Var('chromium_git') + '/external/jsoncpp/jsoncpp/src/lib_json.git' + '@' + '
a8caa51ba2f80971a45880425bf2ae864a786784', |
| 249 | 249 |
| 250 'src/third_party/libyuv': | 250 'src/third_party/libyuv': |
| 251 Var('chromium_git') + '/external/libyuv.git' + '@' + 'd204db647e591ccf0e2589
236ecea90330d65a66', # from svn revision 1171 | 251 Var('chromium_git') + '/external/libyuv.git' + '@' + '194f740d0e2afcf0501747
f11e95215b4c32788d', # from svn revision 1285 |
| 252 | 252 |
| 253 'src/third_party/smhasher/src': | 253 'src/third_party/smhasher/src': |
| 254 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', | 254 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b
2fc3a643b838e5b6e88f', |
| 255 | 255 |
| 256 'src/third_party/libaddressinput/src': | 256 'src/third_party/libaddressinput/src': |
| 257 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '61f63da7ae6fa
469138d60dec5d6bbecc6ab43d6', | 257 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '61f63da7ae6fa
469138d60dec5d6bbecc6ab43d6', |
| 258 | 258 |
| 259 # These are all at libphonenumber r728. | 259 # These are all at libphonenumber r728. |
| 260 'src/third_party/libphonenumber/src/phonenumbers': | 260 'src/third_party/libphonenumber/src/phonenumbers': |
| 261 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', | 261 Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' +
'@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 # corresponding .py files have already been deleted. | 777 # corresponding .py files have already been deleted. |
| 778 'name': 'remove_stale_pyc_files', | 778 'name': 'remove_stale_pyc_files', |
| 779 'pattern': 'src/tools/.*\\.py', | 779 'pattern': 'src/tools/.*\\.py', |
| 780 'action': [ | 780 'action': [ |
| 781 'python', | 781 'python', |
| 782 'src/tools/remove_stale_pyc_files.py', | 782 'src/tools/remove_stale_pyc_files.py', |
| 783 'src/tools', | 783 'src/tools', |
| 784 ], | 784 ], |
| 785 }, | 785 }, |
| 786 ] | 786 ] |
| OLD | NEW |