| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 'src/third_party/pdfium': | 282 'src/third_party/pdfium': |
| 283 Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), | 283 Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| 284 | 284 |
| 285 'src/third_party/boringssl/src': | 285 'src/third_party/boringssl/src': |
| 286 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), | 286 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| 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 | 290 |
| 291 'src/third_party/dom_distiller_js/dist': | 291 'src/third_party/dom_distiller_js/dist': |
| 292 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '05bd5115e2b02ab110f4b71c0d3d589fdc3c7d38', | 292 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + 'cfd68cb97b3050fd35f53c5231128f723d6dae08', |
| 293 | 293 |
| 294 'src/third_party/catapult': | 294 'src/third_party/catapult': |
| 295 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + | 295 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + |
| 296 Var('catapult_revision'), | 296 Var('catapult_revision'), |
| 297 | 297 |
| 298 'src/third_party/openh264/src': | 298 'src/third_party/openh264/src': |
| 299 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '0fd88df
93c5dcaf858c57eb7892bd27763f0f0ac', | 299 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '0fd88df
93c5dcaf858c57eb7892bd27763f0f0ac', |
| 300 | 300 |
| 301 'src/third_party/re2/src': | 301 'src/third_party/re2/src': |
| 302 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'db20d46
c05900a12539225fe800dd860b14e0061', | 302 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'db20d46
c05900a12539225fe800dd860b14e0061', |
| (...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1157 recursedeps = [ | 1157 recursedeps = [ |
| 1158 # buildtools provides clang_format, libc++, and libc++abi | 1158 # buildtools provides clang_format, libc++, and libc++abi |
| 1159 'src/buildtools', | 1159 'src/buildtools', |
| 1160 # android_tools manages the NDK. | 1160 # android_tools manages the NDK. |
| 1161 'src/third_party/android_tools', | 1161 'src/third_party/android_tools', |
| 1162 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1162 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1163 ("src/third_party/angle", "DEPS.chromium"), | 1163 ("src/third_party/angle", "DEPS.chromium"), |
| 1164 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1164 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
| 1165 ("src/third_party/swiftshader", "DEPS"), | 1165 ("src/third_party/swiftshader", "DEPS"), |
| 1166 ] | 1166 ] |
| OLD | NEW |