| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 'src/third_party/pywebsocket/src': | 262 'src/third_party/pywebsocket/src': |
| 263 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', | 263 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 264 | 264 |
| 265 'src/media/cdm/api': | 265 'src/media/cdm/api': |
| 266 Var('chromium_git') + '/chromium/cdm.git' + '@' + '46eebfa522b06c1f0b52b4233
caa56793badf112', | 266 Var('chromium_git') + '/chromium/cdm.git' + '@' + '46eebfa522b06c1f0b52b4233
caa56793badf112', |
| 267 | 267 |
| 268 'src/third_party/mesa/src': | 268 'src/third_party/mesa/src': |
| 269 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e7
035ca882cc77f85793fef', | 269 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e7
035ca882cc77f85793fef', |
| 270 | 270 |
| 271 'src/third_party/ced/src': | 271 'src/third_party/ced/src': |
| 272 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '368a9cc09ad868a3d28f0b5ad4a733f263c46409', | 272 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + 'e21eb6aed10b9f6e2727f136c52420033214d458', |
| 273 | 273 |
| 274 'src/third_party/swiftshader': | 274 'src/third_party/swiftshader': |
| 275 Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revisi
on'), | 275 Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revisi
on'), |
| 276 | 276 |
| 277 'src/third_party/cld_2/src': | 277 'src/third_party/cld_2/src': |
| 278 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', | 278 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', |
| 279 | 279 |
| 280 'src/third_party/cld_3/src': | 280 'src/third_party/cld_3/src': |
| 281 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + 'ae02d
6b8a2af41e87c956c7c7d3f651a8b7b9e79', | 281 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + 'ae02d
6b8a2af41e87c956c7c7d3f651a8b7b9e79', |
| 282 | 282 |
| (...skipping 873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1163 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
| 1164 ("src/third_party/swiftshader", "DEPS"), | 1164 ("src/third_party/swiftshader", "DEPS"), |
| 1165 ] | 1165 ] |
| OLD | NEW |