| 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 | 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' + '@' + '4aca5940e0a4f25c8ab3a91ffe
d3a59b0f7f6800', # from svn revision 293568 |
| 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': | |
| 289 Var('chromium_git') + '/chromium/html-office-public.git' + '@' + 'eeff97614f
65e0578529490d44d412032c3d7359', | |
| 290 | |
| 291 'src/third_party/pdfium': | 288 'src/third_party/pdfium': |
| 292 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 289 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
| 293 | 290 |
| 294 'src/third_party/boringssl/src': | 291 'src/third_party/boringssl/src': |
| 295 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), | 292 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), |
| 296 | 293 |
| 297 'src/third_party/py_trace_event/src': | 294 'src/third_party/py_trace_event/src': |
| 298 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 295 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
| 299 } | 296 } |
| 300 | 297 |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 765 # corresponding .py files have already been deleted. | 762 # corresponding .py files have already been deleted. |
| 766 'name': 'remove_stale_pyc_files', | 763 'name': 'remove_stale_pyc_files', |
| 767 'pattern': 'src/tools/.*\\.py', | 764 'pattern': 'src/tools/.*\\.py', |
| 768 'action': [ | 765 'action': [ |
| 769 'python', | 766 'python', |
| 770 'src/tools/remove_stale_pyc_files.py', | 767 'src/tools/remove_stale_pyc_files.py', |
| 771 'src/tools', | 768 'src/tools', |
| 772 ], | 769 ], |
| 773 }, | 770 }, |
| 774 ] | 771 ] |
| OLD | NEW |