| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 'src/third_party/webpagereplay': | 267 'src/third_party/webpagereplay': |
| 268 Var('chromium_git') + '/external/web-page-replay.git' + '@' + '532b413ff95e85
95d5028e0dae75dcf3ba712d2e', | 268 Var('chromium_git') + '/external/web-page-replay.git' + '@' + '532b413ff95e85
95d5028e0dae75dcf3ba712d2e', |
| 269 | 269 |
| 270 'src/third_party/pywebsocket/src': | 270 'src/third_party/pywebsocket/src': |
| 271 Var('chromium_git') + '/external/pywebsocket/src.git' + '@' + 'cb349e87ddb30
ff8d1fa1a89be39cec901f4a29c', | 271 Var('chromium_git') + '/external/pywebsocket/src.git' + '@' + 'cb349e87ddb30
ff8d1fa1a89be39cec901f4a29c', |
| 272 | 272 |
| 273 'src/third_party/opus/src': | 273 'src/third_party/opus/src': |
| 274 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', | 274 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', |
| 275 | 275 |
| 276 'src/media/cdm/ppapi/api': | 276 'src/media/cdm/ppapi/api': |
| 277 Var('chromium_git') + '/chromium/cdm.git' + '@' + '7b7c6cc620e13c8057b4b6bff1
9e5955feb2c8fa', # from svn revision 293617 | 277 Var('chromium_git') + '/chromium/cdm.git' + '@' + '7377023e384f296cbb27644eb2
c485275f1f92e8', # from svn revision 294518 |
| 278 | 278 |
| 279 'src/third_party/mesa/src': | 279 'src/third_party/mesa/src': |
| 280 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '071d25db04c23821a12a
8b260ab9d96a097402f0', | 280 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '071d25db04c23821a12a
8b260ab9d96a097402f0', |
| 281 | 281 |
| 282 'src/third_party/cld_2/src': | 282 'src/third_party/cld_2/src': |
| 283 Var('chromium_git') + '/external/cld2.git' + '@' + '14d9ef8d4766326f8aa7de54
402d1b9c782d4481', # from svn revision 193 | 283 Var('chromium_git') + '/external/cld2.git' + '@' + '14d9ef8d4766326f8aa7de54
402d1b9c782d4481', # from svn revision 193 |
| 284 | 284 |
| 285 'src/third_party/pdfium': | 285 'src/third_party/pdfium': |
| 286 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 286 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
| 287 | 287 |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 # corresponding .py files have already been deleted. | 780 # corresponding .py files have already been deleted. |
| 781 'name': 'remove_stale_pyc_files', | 781 'name': 'remove_stale_pyc_files', |
| 782 'pattern': 'src/tools/.*\\.py', | 782 'pattern': 'src/tools/.*\\.py', |
| 783 'action': [ | 783 'action': [ |
| 784 'python', | 784 'python', |
| 785 'src/tools/remove_stale_pyc_files.py', | 785 'src/tools/remove_stale_pyc_files.py', |
| 786 'src/tools', | 786 'src/tools', |
| 787 ], | 787 ], |
| 788 }, | 788 }, |
| 789 ] | 789 ] |
| OLD | NEW |