| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 'src/third_party/webpagereplay': | 255 'src/third_party/webpagereplay': |
| 256 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '7564939bdf6482d57b9bd5e9c931679f96d8cf75', | 256 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '7564939bdf6482d57b9bd5e9c931679f96d8cf75', |
| 257 | 257 |
| 258 'src/third_party/pywebsocket/src': | 258 'src/third_party/pywebsocket/src': |
| 259 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'09d842794c14ca064f8a4223b313ac2c84bd33c8', | 259 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'09d842794c14ca064f8a4223b313ac2c84bd33c8', |
| 260 | 260 |
| 261 'src/third_party/opus/src': | 261 'src/third_party/opus/src': |
| 262 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', | 262 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', |
| 263 | 263 |
| 264 'src/media/cdm/ppapi/api': | 264 'src/media/cdm/ppapi/api': |
| 265 Var('chromium_git') + '/chromium/cdm.git' + '@' + '7377023e384f296cbb27644eb2
c485275f1f92e8', # from svn revision 294518 | 265 Var('chromium_git') + '/chromium/cdm.git' + '@' + 'a4773c3cec827c3a880e8a2c22
e43a287ced0d20', |
| 266 | 266 |
| 267 'src/third_party/mesa/src': | 267 'src/third_party/mesa/src': |
| 268 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '3918dbd3bced7843af39
6a0ee9f9da081d968806', | 268 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '3918dbd3bced7843af39
6a0ee9f9da081d968806', |
| 269 | 269 |
| 270 'src/third_party/cld_2/src': | 270 'src/third_party/cld_2/src': |
| 271 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', | 271 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', |
| 272 | 272 |
| 273 'src/third_party/libwebm/source': | 273 'src/third_party/libwebm/source': |
| 274 Var('chromium_git') + '/webm/libwebm.git' + '@' + '75a6d2da8b63e0c446ec0ce1ac
942c2962d959d7', | 274 Var('chromium_git') + '/webm/libwebm.git' + '@' + '75a6d2da8b63e0c446ec0ce1ac
942c2962d959d7', |
| 275 | 275 |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 814 'pattern': '.', | 814 'pattern': '.', |
| 815 'action': [ | 815 'action': [ |
| 816 'python', | 816 'python', |
| 817 'src/tools/check_git_config.py', | 817 'src/tools/check_git_config.py', |
| 818 '--running-as-hook', | 818 '--running-as-hook', |
| 819 ], | 819 ], |
| 820 }, | 820 }, |
| 821 ] | 821 ] |
| 822 | 822 |
| 823 | 823 |
| OLD | NEW |