| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '7051bdd89620d2d4805531ed957f3de83d9d73b2', | 292 Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git'
+ '@' + '7051bdd89620d2d4805531ed957f3de83d9d73b2', |
| 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' + '@' + 'dba3349
aba83b5588e85e5ecf2b56c97f2d259b7', | 302 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '596d73e
6084a88c5394724978b10680dc929d197', |
| 303 | 303 |
| 304 # Used for building libFuzzers (only supports Linux). | 304 # Used for building libFuzzers (only supports Linux). |
| 305 'src/third_party/libFuzzer/src': | 305 'src/third_party/libFuzzer/src': |
| 306 Var('chromium_git') + '/chromium/llvm-project/llvm/lib/Fuzzer.git' + '@' +
Var('libfuzzer_revision'), | 306 Var('chromium_git') + '/chromium/llvm-project/llvm/lib/Fuzzer.git' + '@' +
Var('libfuzzer_revision'), |
| 307 | 307 |
| 308 'src/third_party/visualmetrics/src': | 308 'src/third_party/visualmetrics/src': |
| 309 Var('chromium_git') + '/external/github.com/WPO-Foundation/visualmetrics.git
' + '@' + '1edde9d2fe203229c895b648fdec355917200ad6', | 309 Var('chromium_git') + '/external/github.com/WPO-Foundation/visualmetrics.git
' + '@' + '1edde9d2fe203229c895b648fdec355917200ad6', |
| 310 | 310 |
| 311 'src/third_party/scan-build/src': | 311 'src/third_party/scan-build/src': |
| 312 Var('chromium_git') + '/chromium/llvm-project/cfe/tools/scan-build.git' + '@
' + Var('scanbuild_revision'), | 312 Var('chromium_git') + '/chromium/llvm-project/cfe/tools/scan-build.git' + '@
' + Var('scanbuild_revision'), |
| (...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1123 ] | 1123 ] |
| 1124 | 1124 |
| 1125 recursedeps = [ | 1125 recursedeps = [ |
| 1126 # buildtools provides clang_format, libc++, and libc++abi | 1126 # buildtools provides clang_format, libc++, and libc++abi |
| 1127 'src/buildtools', | 1127 'src/buildtools', |
| 1128 # android_tools manages the NDK. | 1128 # android_tools manages the NDK. |
| 1129 'src/third_party/android_tools', | 1129 'src/third_party/android_tools', |
| 1130 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1130 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1131 ("src/third_party/angle", "DEPS.chromium"), | 1131 ("src/third_party/angle", "DEPS.chromium"), |
| 1132 ] | 1132 ] |
| OLD | NEW |