| 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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 274 | 274 | 
| 275   'src/third_party/py_trace_event/src': | 275   'src/third_party/py_trace_event/src': | 
| 276     Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
     de2b9e53dea57a77b4c3ac9b30', | 276     Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
     de2b9e53dea57a77b4c3ac9b30', | 
| 277 | 277 | 
| 278   'src/third_party/dom_distiller_js/dist': | 278   'src/third_party/dom_distiller_js/dist': | 
| 279     Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
      + '@' + '445b024cb55f367636e6da4a61796a2afecd6d3f', | 279     Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
      + '@' + '445b024cb55f367636e6da4a61796a2afecd6d3f', | 
| 280 | 280 | 
| 281   'src/third_party/catapult': | 281   'src/third_party/catapult': | 
| 282     Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
      '@' + | 282     Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
      '@' + | 
| 283     'e2c6869c72944a7a7a729c7ccc9fdc1f8f90de8e', | 283     'e2c6869c72944a7a7a729c7ccc9fdc1f8f90de8e', | 
|  | 284 | 
|  | 285   'src/third_party/openh264/src': | 
|  | 286     Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda2
     48234162033e3e11b0335f3131cdfe488', | 
| 284 } | 287 } | 
| 285 | 288 | 
| 286 | 289 | 
| 287 deps_os = { | 290 deps_os = { | 
| 288   'win': { | 291   'win': { | 
| 289     'src/chrome/tools/test/reference_build/chrome_win': | 292     'src/chrome/tools/test/reference_build/chrome_win': | 
| 290      Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + '
     f8a3a845dfc845df6b14280f04f86a61959357ef', | 293      Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + '
     f8a3a845dfc845df6b14280f04f86a61959357ef', | 
| 291 | 294 | 
| 292     'src/third_party/cygwin': | 295     'src/third_party/cygwin': | 
| 293      Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
     df3a10ff1007a97c0b7de6df', | 296      Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fa
     df3a10ff1007a97c0b7de6df', | 
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 819     'pattern': '.', | 822     'pattern': '.', | 
| 820     'action': [ | 823     'action': [ | 
| 821         'python', | 824         'python', | 
| 822         'src/tools/check_git_config.py', | 825         'src/tools/check_git_config.py', | 
| 823         '--running-as-hook', | 826         '--running-as-hook', | 
| 824     ], | 827     ], | 
| 825   }, | 828   }, | 
| 826 ] | 829 ] | 
| 827 | 830 | 
| 828 | 831 | 
| OLD | NEW | 
|---|