| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 'src/third_party/pdfium': | 262 'src/third_party/pdfium': |
| 263 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 263 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
| 264 | 264 |
| 265 'src/third_party/boringssl/src': | 265 'src/third_party/boringssl/src': |
| 266 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), | 266 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), |
| 267 | 267 |
| 268 'src/third_party/py_trace_event/src': | 268 'src/third_party/py_trace_event/src': |
| 269 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 269 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
| 270 | 270 |
| 271 'src/third_party/dom_distiller_js/dist': | 271 'src/third_party/dom_distiller_js/dist': |
| 272 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '4948eb81dc84578e58a59b8ef493ce946cd00b0f', | 272 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + 'f93cf9c2817926a92f4f347b20fa840a1998d5f3', |
| 273 } | 273 } |
| 274 | 274 |
| 275 | 275 |
| 276 deps_os = { | 276 deps_os = { |
| 277 'win': { | 277 'win': { |
| 278 'src/chrome/tools/test/reference_build/chrome_win': | 278 'src/chrome/tools/test/reference_build/chrome_win': |
| 279 Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + '
f8a3a845dfc845df6b14280f04f86a61959357ef', | 279 Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + '
f8a3a845dfc845df6b14280f04f86a61959357ef', |
| 280 | 280 |
| 281 'src/third_party/cygwin': | 281 'src/third_party/cygwin': |
| 282 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
df3a10ff1007a97c0b7de6df', | 282 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
df3a10ff1007a97c0b7de6df', |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 # corresponding .py files have already been deleted. | 769 # corresponding .py files have already been deleted. |
| 770 'name': 'remove_stale_pyc_files', | 770 'name': 'remove_stale_pyc_files', |
| 771 'pattern': 'src/tools/.*\\.py', | 771 'pattern': 'src/tools/.*\\.py', |
| 772 'action': [ | 772 'action': [ |
| 773 'python', | 773 'python', |
| 774 'src/tools/remove_stale_pyc_files.py', | 774 'src/tools/remove_stale_pyc_files.py', |
| 775 'src/tools', | 775 'src/tools', |
| 776 ], | 776 ], |
| 777 }, | 777 }, |
| 778 ] | 778 ] |
| OLD | NEW |