| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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' + '@' + 'ae02d
6b8a2af41e87c956c7c7d3f651a8b7b9e79', | 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' + '@' + '4956b2dec65352af32dc71bab
553acb631c64177', |
| 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 |
| 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 |
| (...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1154 ] | 1154 ] |
| 1155 | 1155 |
| 1156 recursedeps = [ | 1156 recursedeps = [ |
| 1157 # buildtools provides clang_format, libc++, and libc++abi | 1157 # buildtools provides clang_format, libc++, and libc++abi |
| 1158 'src/buildtools', | 1158 'src/buildtools', |
| 1159 # android_tools manages the NDK. | 1159 # android_tools manages the NDK. |
| 1160 'src/third_party/android_tools', | 1160 'src/third_party/android_tools', |
| 1161 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1161 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1162 ("src/third_party/angle", "DEPS.chromium"), | 1162 ("src/third_party/angle", "DEPS.chromium"), |
| 1163 ] | 1163 ] |
| OLD | NEW |