| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 'src/third_party/pdfium': | 278 'src/third_party/pdfium': |
| 279 Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), | 279 Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| 280 | 280 |
| 281 'src/third_party/boringssl/src': | 281 'src/third_party/boringssl/src': |
| 282 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), | 282 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| 283 | 283 |
| 284 'src/third_party/py_trace_event/src': | 284 'src/third_party/py_trace_event/src': |
| 285 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 285 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
| 286 | 286 |
| 287 'src/third_party/dom_distiller_js/dist': | 287 'src/third_party/dom_distiller_js/dist': |
| 288 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '241e65eb93dd3e0dec2e0d3e0e0cac7a0e74e82c', | 288 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '2fb636d492d74b91cbbd357da0281b6f0de19ee8', |
| 289 | 289 |
| 290 'src/third_party/catapult': | 290 'src/third_party/catapult': |
| 291 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + | 291 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + |
| 292 Var('catapult_revision'), | 292 Var('catapult_revision'), |
| 293 | 293 |
| 294 'src/third_party/openh264/src': | 294 'src/third_party/openh264/src': |
| 295 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '0fd88df
93c5dcaf858c57eb7892bd27763f0f0ac', | 295 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '0fd88df
93c5dcaf858c57eb7892bd27763f0f0ac', |
| 296 | 296 |
| 297 'src/third_party/re2/src': | 297 'src/third_party/re2/src': |
| 298 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'dba3349
aba83b5588e85e5ecf2b56c97f2d259b7', | 298 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'dba3349
aba83b5588e85e5ecf2b56c97f2d259b7', |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 ] | 1096 ] |
| 1097 | 1097 |
| 1098 recursedeps = [ | 1098 recursedeps = [ |
| 1099 # buildtools provides clang_format, libc++, and libc++abi | 1099 # buildtools provides clang_format, libc++, and libc++abi |
| 1100 'src/buildtools', | 1100 'src/buildtools', |
| 1101 # android_tools manages the NDK. | 1101 # android_tools manages the NDK. |
| 1102 'src/third_party/android_tools', | 1102 'src/third_party/android_tools', |
| 1103 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1103 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1104 ("src/third_party/angle", "DEPS.chromium"), | 1104 ("src/third_party/angle", "DEPS.chromium"), |
| 1105 ] | 1105 ] |
| OLD | NEW |