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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 'src/third_party/webpagereplay': | 270 'src/third_party/webpagereplay': |
271 Var('chromium_git') + '/external/web-page-replay.git' + '@' + '2f7b704b8b5679
83c040f555d3e46f9766db8e87', | 271 Var('chromium_git') + '/external/web-page-replay.git' + '@' + '2f7b704b8b5679
83c040f555d3e46f9766db8e87', |
272 | 272 |
273 'src/third_party/pywebsocket/src': | 273 'src/third_party/pywebsocket/src': |
274 Var('chromium_git') + '/external/pywebsocket/src.git' + '@' + 'cb349e87ddb30
ff8d1fa1a89be39cec901f4a29c', | 274 Var('chromium_git') + '/external/pywebsocket/src.git' + '@' + 'cb349e87ddb30
ff8d1fa1a89be39cec901f4a29c', |
275 | 275 |
276 'src/third_party/opus/src': | 276 'src/third_party/opus/src': |
277 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', | 277 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', |
278 | 278 |
279 'src/media/cdm/ppapi/api': | 279 'src/media/cdm/ppapi/api': |
280 Var('chromium_git') + '/chromium/cdm.git' + '@' + '4aca5940e0a4f25c8ab3a91ffe
d3a59b0f7f6800', # from svn revision 293568 | 280 Var('chromium_git') + '/chromium/cdm.git' + '@' + '7b7c6cc620e13c8057b4b6bff1
9e5955feb2c8fa', # from svn revision 293617 |
281 | 281 |
282 'src/third_party/mesa/src': | 282 'src/third_party/mesa/src': |
283 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '071d25db04c23821a12a
8b260ab9d96a097402f0', | 283 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '071d25db04c23821a12a
8b260ab9d96a097402f0', |
284 | 284 |
285 'src/third_party/cld_2/src': | 285 'src/third_party/cld_2/src': |
286 Var('chromium_git') + '/external/cld2.git' + '@' + '14d9ef8d4766326f8aa7de54
402d1b9c782d4481', # from svn revision 193 | 286 Var('chromium_git') + '/external/cld2.git' + '@' + '14d9ef8d4766326f8aa7de54
402d1b9c782d4481', # from svn revision 193 |
287 | 287 |
288 'src/chrome/browser/resources/pdf/html_office': | 288 'src/chrome/browser/resources/pdf/html_office': |
289 Var('chromium_git') + '/chromium/html-office-public.git' + '@' + 'eeff97614f
65e0578529490d44d412032c3d7359', | 289 Var('chromium_git') + '/chromium/html-office-public.git' + '@' + 'eeff97614f
65e0578529490d44d412032c3d7359', |
290 | 290 |
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 # corresponding .py files have already been deleted. | 765 # corresponding .py files have already been deleted. |
766 'name': 'remove_stale_pyc_files', | 766 'name': 'remove_stale_pyc_files', |
767 'pattern': 'src/tools/.*\\.py', | 767 'pattern': 'src/tools/.*\\.py', |
768 'action': [ | 768 'action': [ |
769 'python', | 769 'python', |
770 'src/tools/remove_stale_pyc_files.py', | 770 'src/tools/remove_stale_pyc_files.py', |
771 'src/tools', | 771 'src/tools', |
772 ], | 772 ], |
773 }, | 773 }, |
774 ] | 774 ] |
OLD | NEW |