| 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/pdfium': | 277 'src/third_party/pdfium': |
| 278 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 278 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
| 279 | 279 |
| 280 'src/third_party/boringssl/src': | 280 'src/third_party/boringssl/src': |
| 281 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), | 281 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), |
| 282 | 282 |
| 283 'src/third_party/py_trace_event/src': | 283 'src/third_party/py_trace_event/src': |
| 284 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 284 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
| 285 | 285 |
| 286 'src/third_party/dom_distiller_js/dist': | 286 'src/third_party/dom_distiller_js/dist': |
| 287 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + 'aaa3e9a897b74b97b032d7c957f155cc2e19a186', | 287 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '4948eb81dc84578e58a59b8ef493ce946cd00b0f', |
| 288 } | 288 } |
| 289 | 289 |
| 290 | 290 |
| 291 deps_os = { | 291 deps_os = { |
| 292 'win': { | 292 'win': { |
| 293 'src/chrome/tools/test/reference_build/chrome_win': | 293 'src/chrome/tools/test/reference_build/chrome_win': |
| 294 Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + '
f8a3a845dfc845df6b14280f04f86a61959357ef', | 294 Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + '
f8a3a845dfc845df6b14280f04f86a61959357ef', |
| 295 | 295 |
| 296 'src/third_party/cygwin': | 296 'src/third_party/cygwin': |
| 297 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
df3a10ff1007a97c0b7de6df', | 297 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
df3a10ff1007a97c0b7de6df', |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 # corresponding .py files have already been deleted. | 757 # corresponding .py files have already been deleted. |
| 758 'name': 'remove_stale_pyc_files', | 758 'name': 'remove_stale_pyc_files', |
| 759 'pattern': 'src/tools/.*\\.py', | 759 'pattern': 'src/tools/.*\\.py', |
| 760 'action': [ | 760 'action': [ |
| 761 'python', | 761 'python', |
| 762 'src/tools/remove_stale_pyc_files.py', | 762 'src/tools/remove_stale_pyc_files.py', |
| 763 'src/tools', | 763 'src/tools', |
| 764 ], | 764 ], |
| 765 }, | 765 }, |
| 766 ] | 766 ] |
| OLD | NEW |