| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 'src/third_party/ced/src': | 257 'src/third_party/ced/src': |
| 258 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '9012c0ab648025dd0f8df14294bf5d6d73793ac9', | 258 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '9012c0ab648025dd0f8df14294bf5d6d73793ac9', |
| 259 | 259 |
| 260 'src/third_party/swiftshader': | 260 'src/third_party/swiftshader': |
| 261 Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revisi
on'), | 261 Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revisi
on'), |
| 262 | 262 |
| 263 'src/third_party/cld_2/src': | 263 'src/third_party/cld_2/src': |
| 264 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', | 264 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', |
| 265 | 265 |
| 266 'src/third_party/cld_3/src': | 266 'src/third_party/cld_3/src': |
| 267 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + 'f0167
2272dacc4cb3409f458ed61f7d4eb0f47de', | 267 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '79f01
7acfa55012ab8a553700e4b7fe78ba3709c', |
| 268 | 268 |
| 269 'src/third_party/libwebm/source': | 269 'src/third_party/libwebm/source': |
| 270 Var('chromium_git') + '/webm/libwebm.git' + '@' + '9a235e0bc94319c5f7184bd69
cbe5468a74a025c', | 270 Var('chromium_git') + '/webm/libwebm.git' + '@' + '9a235e0bc94319c5f7184bd69
cbe5468a74a025c', |
| 271 | 271 |
| 272 'src/third_party/pdfium': | 272 'src/third_party/pdfium': |
| 273 Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), | 273 Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| 274 | 274 |
| 275 'src/third_party/boringssl/src': | 275 'src/third_party/boringssl/src': |
| 276 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), | 276 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| 277 | 277 |
| (...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1018 ] | 1018 ] |
| 1019 | 1019 |
| 1020 recursedeps = [ | 1020 recursedeps = [ |
| 1021 # buildtools provides clang_format, libc++, and libc++abi | 1021 # buildtools provides clang_format, libc++, and libc++abi |
| 1022 'src/buildtools', | 1022 'src/buildtools', |
| 1023 # android_tools manages the NDK. | 1023 # android_tools manages the NDK. |
| 1024 'src/third_party/android_tools', | 1024 'src/third_party/android_tools', |
| 1025 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1025 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1026 ("src/third_party/angle", "DEPS.chromium"), | 1026 ("src/third_party/angle", "DEPS.chromium"), |
| 1027 ] | 1027 ] |
| OLD | NEW |