| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 'src/third_party/webpagereplay': | 277 'src/third_party/webpagereplay': |
| 278 Var('chromium_git') + '/external/web-page-replay.git' + '@' + '2f7b704b8b5679
83c040f555d3e46f9766db8e87', | 278 Var('chromium_git') + '/external/web-page-replay.git' + '@' + '2f7b704b8b5679
83c040f555d3e46f9766db8e87', |
| 279 | 279 |
| 280 'src/third_party/pywebsocket/src': | 280 'src/third_party/pywebsocket/src': |
| 281 Var('chromium_git') + '/external/pywebsocket/src.git' + '@' + 'cb349e87ddb30
ff8d1fa1a89be39cec901f4a29c', | 281 Var('chromium_git') + '/external/pywebsocket/src.git' + '@' + 'cb349e87ddb30
ff8d1fa1a89be39cec901f4a29c', |
| 282 | 282 |
| 283 'src/third_party/opus/src': | 283 'src/third_party/opus/src': |
| 284 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', | 284 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', |
| 285 | 285 |
| 286 'src/media/cdm/ppapi/api': | 286 'src/media/cdm/ppapi/api': |
| 287 Var('chromium_git') + '/chromium/cdm.git' + '@' + '41c8183a3966a17b440dbe606c
b2840e1b7ce884', | 287 Var('chromium_git') + '/chromium/cdm.git' + '@' + 'f924b6382b05c57677455ac40f
210b33809591ef', # from svn revision 292736 |
| 288 | 288 |
| 289 'src/third_party/mesa/src': | 289 'src/third_party/mesa/src': |
| 290 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '9731cb962963bca8a05f
3d0f6ea40c3a781f0537', | 290 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '9731cb962963bca8a05f
3d0f6ea40c3a781f0537', |
| 291 | 291 |
| 292 'src/third_party/cld_2/src': | 292 'src/third_party/cld_2/src': |
| 293 Var('chromium_git') + '/external/cld2.git' + '@' + 'fe53e1cd31db9bb3e636f9ca
af7be2f432b85390', # from svn revision 171 | 293 Var('chromium_git') + '/external/cld2.git' + '@' + 'fe53e1cd31db9bb3e636f9ca
af7be2f432b85390', # from svn revision 171 |
| 294 | 294 |
| 295 'src/chrome/browser/resources/pdf/html_office': | 295 'src/chrome/browser/resources/pdf/html_office': |
| 296 Var('chromium_git') + '/chromium/html-office-public.git' + '@' + 'eeff97614f
65e0578529490d44d412032c3d7359', | 296 Var('chromium_git') + '/chromium/html-office-public.git' + '@' + 'eeff97614f
65e0578529490d44d412032c3d7359', |
| 297 | 297 |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 # corresponding .py files have already been deleted. | 774 # corresponding .py files have already been deleted. |
| 775 'name': 'remove_stale_pyc_files', | 775 'name': 'remove_stale_pyc_files', |
| 776 'pattern': 'src/tools/.*\\.py', | 776 'pattern': 'src/tools/.*\\.py', |
| 777 'action': [ | 777 'action': [ |
| 778 'python', | 778 'python', |
| 779 'src/tools/remove_stale_pyc_files.py', | 779 'src/tools/remove_stale_pyc_files.py', |
| 780 'src/tools', | 780 'src/tools', |
| 781 ], | 781 ], |
| 782 }, | 782 }, |
| 783 ] | 783 ] |
| OLD | NEW |