| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 'src/third_party/webpagereplay': | 278 'src/third_party/webpagereplay': |
| 279 Var('chromium_git') + '/external/web-page-replay.git' + '@' + '2f7b704b8b5679
83c040f555d3e46f9766db8e87', | 279 Var('chromium_git') + '/external/web-page-replay.git' + '@' + '2f7b704b8b5679
83c040f555d3e46f9766db8e87', |
| 280 | 280 |
| 281 'src/third_party/pywebsocket/src': | 281 'src/third_party/pywebsocket/src': |
| 282 Var('chromium_git') + '/external/pywebsocket/src.git' + '@' + 'cb349e87ddb30
ff8d1fa1a89be39cec901f4a29c', | 282 Var('chromium_git') + '/external/pywebsocket/src.git' + '@' + 'cb349e87ddb30
ff8d1fa1a89be39cec901f4a29c', |
| 283 | 283 |
| 284 'src/third_party/opus/src': | 284 'src/third_party/opus/src': |
| 285 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', | 285 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', |
| 286 | 286 |
| 287 'src/media/cdm/ppapi/api': | 287 'src/media/cdm/ppapi/api': |
| 288 Var('chromium_git') + '/chromium/cdm.git' + '@' + '09203a77eb272cd112faa40142
8c6b5e8fb8b437', # from svn revision 293431 | 288 Var('chromium_git') + '/chromium/cdm.git' + '@' + '4aca5940e0a4f25c8ab3a91ffe
d3a59b0f7f6800', # from svn revision 293568 |
| 289 | 289 |
| 290 'src/third_party/mesa/src': | 290 'src/third_party/mesa/src': |
| 291 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '071d25db04c23821a12a
8b260ab9d96a097402f0', | 291 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '071d25db04c23821a12a
8b260ab9d96a097402f0', |
| 292 | 292 |
| 293 'src/third_party/cld_2/src': | 293 'src/third_party/cld_2/src': |
| 294 Var('chromium_git') + '/external/cld2.git' + '@' + '14d9ef8d4766326f8aa7de54
402d1b9c782d4481', # from svn revision 193 | 294 Var('chromium_git') + '/external/cld2.git' + '@' + '14d9ef8d4766326f8aa7de54
402d1b9c782d4481', # from svn revision 193 |
| 295 | 295 |
| 296 'src/chrome/browser/resources/pdf/html_office': | 296 'src/chrome/browser/resources/pdf/html_office': |
| 297 Var('chromium_git') + '/chromium/html-office-public.git' + '@' + 'eeff97614f
65e0578529490d44d412032c3d7359', | 297 Var('chromium_git') + '/chromium/html-office-public.git' + '@' + 'eeff97614f
65e0578529490d44d412032c3d7359', |
| 298 | 298 |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 # corresponding .py files have already been deleted. | 794 # corresponding .py files have already been deleted. |
| 795 'name': 'remove_stale_pyc_files', | 795 'name': 'remove_stale_pyc_files', |
| 796 'pattern': 'src/tools/.*\\.py', | 796 'pattern': 'src/tools/.*\\.py', |
| 797 'action': [ | 797 'action': [ |
| 798 'python', | 798 'python', |
| 799 'src/tools/remove_stale_pyc_files.py', | 799 'src/tools/remove_stale_pyc_files.py', |
| 800 'src/tools', | 800 'src/tools', |
| 801 ], | 801 ], |
| 802 }, | 802 }, |
| 803 ] | 803 ] |
| OLD | NEW |