| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 252 |
| 253 'src/media/cdm/ppapi/api': | 253 'src/media/cdm/ppapi/api': |
| 254 Var('chromium_git') + '/chromium/cdm.git' + '@' + '7377023e384f296cbb27644eb2
c485275f1f92e8', # from svn revision 294518 | 254 Var('chromium_git') + '/chromium/cdm.git' + '@' + '7377023e384f296cbb27644eb2
c485275f1f92e8', # from svn revision 294518 |
| 255 | 255 |
| 256 'src/third_party/mesa/src': | 256 'src/third_party/mesa/src': |
| 257 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '071d25db04c23821a12a
8b260ab9d96a097402f0', | 257 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '071d25db04c23821a12a
8b260ab9d96a097402f0', |
| 258 | 258 |
| 259 'src/third_party/cld_2/src': | 259 'src/third_party/cld_2/src': |
| 260 Var('chromium_git') + '/external/cld2.git' + '@' + '14d9ef8d4766326f8aa7de54
402d1b9c782d4481', # from svn revision 193 | 260 Var('chromium_git') + '/external/cld2.git' + '@' + '14d9ef8d4766326f8aa7de54
402d1b9c782d4481', # from svn revision 193 |
| 261 | 261 |
| 262 'src/third_party/libwebm/source': |
| 263 Var('chromium_git') + '/webm/libwebm.git' + '@' + '75a6d2da8b63e0c446ec0ce1ac
942c2962d959d7', |
| 264 |
| 262 'src/third_party/pdfium': | 265 'src/third_party/pdfium': |
| 263 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 266 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
| 264 | 267 |
| 265 'src/third_party/boringssl/src': | 268 'src/third_party/boringssl/src': |
| 266 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), | 269 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), |
| 267 | 270 |
| 268 'src/third_party/py_trace_event/src': | 271 'src/third_party/py_trace_event/src': |
| 269 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 272 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
| 270 | 273 |
| 271 'src/third_party/dom_distiller_js/dist': | 274 'src/third_party/dom_distiller_js/dist': |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 # migration completes (let's say Sep 1 2014). | 792 # migration completes (let's say Sep 1 2014). |
| 790 'name': 'check_git_config', | 793 'name': 'check_git_config', |
| 791 'pattern': '.', | 794 'pattern': '.', |
| 792 'action': [ | 795 'action': [ |
| 793 'python', | 796 'python', |
| 794 'src/tools/check_git_config.py', | 797 'src/tools/check_git_config.py', |
| 795 '--running-as-hook', | 798 '--running-as-hook', |
| 796 ], | 799 ], |
| 797 }, | 800 }, |
| 798 ] | 801 ] |
| OLD | NEW |