| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| 288 'src/third_party/boringssl/src': | 288 'src/third_party/boringssl/src': |
| 289 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), | 289 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), |
| 290 | 290 |
| 291 'src/third_party/py_trace_event/src': | 291 'src/third_party/py_trace_event/src': |
| 292 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 292 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
| 293 | 293 |
| 294 'src/third_party/dom_distiller_js/dist': | 294 'src/third_party/dom_distiller_js/dist': |
| 295 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '964272de851ef5d5d1096d319526b992d8d3d7f6', | 295 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '419c7e659cf1b35763d5e6ce4a757fe15f4f37db', |
| 296 } | 296 } |
| 297 | 297 |
| 298 | 298 |
| 299 deps_os = { | 299 deps_os = { |
| 300 'win': { | 300 'win': { |
| 301 'src/chrome/tools/test/reference_build/chrome_win': | 301 'src/chrome/tools/test/reference_build/chrome_win': |
| 302 Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + '
f8a3a845dfc845df6b14280f04f86a61959357ef', | 302 Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + '
f8a3a845dfc845df6b14280f04f86a61959357ef', |
| 303 | 303 |
| 304 'src/third_party/cygwin': | 304 'src/third_party/cygwin': |
| 305 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
df3a10ff1007a97c0b7de6df', | 305 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
df3a10ff1007a97c0b7de6df', |
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 790 # corresponding .py files have already been deleted. | 790 # corresponding .py files have already been deleted. |
| 791 'name': 'remove_stale_pyc_files', | 791 'name': 'remove_stale_pyc_files', |
| 792 'pattern': 'src/tools/.*\\.py', | 792 'pattern': 'src/tools/.*\\.py', |
| 793 'action': [ | 793 'action': [ |
| 794 'python', | 794 'python', |
| 795 'src/tools/remove_stale_pyc_files.py', | 795 'src/tools/remove_stale_pyc_files.py', |
| 796 'src/tools', | 796 'src/tools', |
| 797 ], | 797 ], |
| 798 }, | 798 }, |
| 799 ] | 799 ] |
| OLD | NEW |