Chromium Code Reviews| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 280 Var('chromium_git') + '/external/cld2.git' + '@' + '14d9ef8d4766326f8aa7de54 402d1b9c782d4481', # from svn revision 193 | 280 Var('chromium_git') + '/external/cld2.git' + '@' + '14d9ef8d4766326f8aa7de54 402d1b9c782d4481', # from svn revision 193 |
| 281 | 281 |
| 282 'src/third_party/pdfium': | 282 'src/third_party/pdfium': |
| 283 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 283 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
| 284 | 284 |
| 285 'src/third_party/boringssl/src': | 285 'src/third_party/boringssl/src': |
| 286 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re vision'), | 286 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re vision'), |
| 287 | 287 |
| 288 'src/third_party/py_trace_event/src': | 288 'src/third_party/py_trace_event/src': |
| 289 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430 de2b9e53dea57a77b4c3ac9b30', | 289 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430 de2b9e53dea57a77b4c3ac9b30', |
| 290 | |
| 291 'src/third_party/dom_distiller_js/package': | |
|
cjhopman
2015/03/12 02:12:22
I think you're less likely to run into weird issue
nyquist
2015/03/17 00:46:21
changed to 'dist' here and in repo name.
| |
| 292 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-package.g it' + '@' + 'deadbeefdeadd00ddeadc0decafed00d', | |
| 290 } | 293 } |
| 291 | 294 |
| 292 | 295 |
| 293 deps_os = { | 296 deps_os = { |
| 294 'win': { | 297 'win': { |
| 295 'src/chrome/tools/test/reference_build/chrome_win': | 298 'src/chrome/tools/test/reference_build/chrome_win': |
| 296 Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + ' f8a3a845dfc845df6b14280f04f86a61959357ef', | 299 Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + ' f8a3a845dfc845df6b14280f04f86a61959357ef', |
| 297 | 300 |
| 298 'src/third_party/cygwin': | 301 'src/third_party/cygwin': |
| 299 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa df3a10ff1007a97c0b7de6df', | 302 Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa df3a10ff1007a97c0b7de6df', |
| (...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 774 # corresponding .py files have already been deleted. | 777 # corresponding .py files have already been deleted. |
| 775 'name': 'remove_stale_pyc_files', | 778 'name': 'remove_stale_pyc_files', |
| 776 'pattern': 'src/tools/.*\\.py', | 779 'pattern': 'src/tools/.*\\.py', |
| 777 'action': [ | 780 'action': [ |
| 778 'python', | 781 'python', |
| 779 'src/tools/remove_stale_pyc_files.py', | 782 'src/tools/remove_stale_pyc_files.py', |
| 780 'src/tools', | 783 'src/tools', |
| 781 ], | 784 ], |
| 782 }, | 785 }, |
| 783 ] | 786 ] |
| OLD | NEW |