| 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/ced/src': | 254 'src/third_party/ced/src': |
| 255 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '9012c0ab648025dd0f8df14294bf5d6d73793ac9', | 255 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '9012c0ab648025dd0f8df14294bf5d6d73793ac9', |
| 256 | 256 |
| 257 'src/third_party/swiftshader': | 257 'src/third_party/swiftshader': |
| 258 'https://swiftshader.googlesource.com/SwiftShader.git' + '@' + Var('swiftsha
der_revision'), | 258 'https://swiftshader.googlesource.com/SwiftShader.git' + '@' + Var('swiftsha
der_revision'), |
| 259 | 259 |
| 260 'src/third_party/cld_2/src': | 260 'src/third_party/cld_2/src': |
| 261 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', | 261 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', |
| 262 | 262 |
| 263 'src/third_party/cld_3/src': | 263 'src/third_party/cld_3/src': |
| 264 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '4c0a3
9d15a1fcfe8ad3f5d95bae8ad8967bd3816', | 264 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '9a8b3
57fc8d7c2c1f3902babb8dd7992a1fdd94e', |
| 265 | 265 |
| 266 'src/third_party/libwebm/source': | 266 'src/third_party/libwebm/source': |
| 267 Var('chromium_git') + '/webm/libwebm.git' + '@' + '9a235e0bc94319c5f7184bd69c
be5468a74a025c', | 267 Var('chromium_git') + '/webm/libwebm.git' + '@' + '9a235e0bc94319c5f7184bd69c
be5468a74a025c', |
| 268 | 268 |
| 269 'src/third_party/pdfium': | 269 'src/third_party/pdfium': |
| 270 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 270 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
| 271 | 271 |
| 272 'src/third_party/boringssl/src': | 272 'src/third_party/boringssl/src': |
| 273 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), | 273 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), |
| 274 | 274 |
| (...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1004 'name': 'doclava', | 1004 'name': 'doclava', |
| 1005 'pattern': '.', | 1005 'pattern': '.', |
| 1006 'action': ['python', | 1006 'action': ['python', |
| 1007 'src/build/android/download_doclava.py', | 1007 'src/build/android/download_doclava.py', |
| 1008 ], | 1008 ], |
| 1009 }, | 1009 }, |
| 1010 ] | 1010 ] |
| 1011 | 1011 |
| 1012 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1012 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1013 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 1013 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |