| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 'src/third_party/ced/src': | 263 'src/third_party/ced/src': |
| 264 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '368a9cc09ad868a3d28f0b5ad4a733f263c46409', | 264 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '368a9cc09ad868a3d28f0b5ad4a733f263c46409', |
| 265 | 265 |
| 266 'src/third_party/swiftshader': | 266 'src/third_party/swiftshader': |
| 267 Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revisi
on'), | 267 Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revisi
on'), |
| 268 | 268 |
| 269 'src/third_party/cld_2/src': | 269 'src/third_party/cld_2/src': |
| 270 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', | 270 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', |
| 271 | 271 |
| 272 'src/third_party/cld_3/src': | 272 'src/third_party/cld_3/src': |
| 273 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + 'c0336
8eff92acc56756df2d4cd74a01a674409ea', | 273 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + 'ae02d
6b8a2af41e87c956c7c7d3f651a8b7b9e79', |
| 274 | 274 |
| 275 'src/third_party/libwebm/source': | 275 'src/third_party/libwebm/source': |
| 276 Var('chromium_git') + '/webm/libwebm.git' + '@' + '9a235e0bc94319c5f7184bd69
cbe5468a74a025c', | 276 Var('chromium_git') + '/webm/libwebm.git' + '@' + '9a235e0bc94319c5f7184bd69
cbe5468a74a025c', |
| 277 | 277 |
| 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 |
| (...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1104 ] | 1104 ] |
| 1105 | 1105 |
| 1106 recursedeps = [ | 1106 recursedeps = [ |
| 1107 # buildtools provides clang_format, libc++, and libc++abi | 1107 # buildtools provides clang_format, libc++, and libc++abi |
| 1108 'src/buildtools', | 1108 'src/buildtools', |
| 1109 # android_tools manages the NDK. | 1109 # android_tools manages the NDK. |
| 1110 'src/third_party/android_tools', | 1110 'src/third_party/android_tools', |
| 1111 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1111 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1112 ("src/third_party/angle", "DEPS.chromium"), | 1112 ("src/third_party/angle", "DEPS.chromium"), |
| 1113 ] | 1113 ] |
| OLD | NEW |