| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 'src/third_party/pywebsocket/src': | 254 'src/third_party/pywebsocket/src': |
| 255 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', | 255 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 256 | 256 |
| 257 'src/media/cdm/api': | 257 'src/media/cdm/api': |
| 258 Var('chromium_git') + '/chromium/cdm.git' + '@' + '6a62dcef02523e2d5be4defb6
8a7d9363c7389d2', | 258 Var('chromium_git') + '/chromium/cdm.git' + '@' + '6a62dcef02523e2d5be4defb6
8a7d9363c7389d2', |
| 259 | 259 |
| 260 'src/third_party/mesa/src': | 260 'src/third_party/mesa/src': |
| 261 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e7
035ca882cc77f85793fef', | 261 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e7
035ca882cc77f85793fef', |
| 262 | 262 |
| 263 'src/third_party/ced/src': | 263 'src/third_party/ced/src': |
| 264 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + 'e57cdc44bd541d10669312a6fdc59fc4bf52d2b9', | 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' + '@' + 'c0336
8eff92acc56756df2d4cd74a01a674409ea', |
| 274 | 274 |
| (...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 ] | 1096 ] |
| 1097 | 1097 |
| 1098 recursedeps = [ | 1098 recursedeps = [ |
| 1099 # buildtools provides clang_format, libc++, and libc++abi | 1099 # buildtools provides clang_format, libc++, and libc++abi |
| 1100 'src/buildtools', | 1100 'src/buildtools', |
| 1101 # android_tools manages the NDK. | 1101 # android_tools manages the NDK. |
| 1102 'src/third_party/android_tools', | 1102 'src/third_party/android_tools', |
| 1103 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1103 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1104 ("src/third_party/angle", "DEPS.chromium"), | 1104 ("src/third_party/angle", "DEPS.chromium"), |
| 1105 ] | 1105 ] |
| OLD | NEW |