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' + '@' + '95543 91d1b58db9d707fb98f181b9e2fd6d0db92', | 264 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + 'f0167 2272dacc4cb3409f458ed61f7d4eb0f47de', |
Eugene But (OOO till 7-30)
2016/08/27 00:54:22
This change breaks Chrome for iOS language detecti
| |
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 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1001 'name': 'doclava', | 1001 'name': 'doclava', |
1002 'pattern': '.', | 1002 'pattern': '.', |
1003 'action': ['python', | 1003 'action': ['python', |
1004 'src/build/android/download_doclava.py', | 1004 'src/build/android/download_doclava.py', |
1005 ], | 1005 ], |
1006 }, | 1006 }, |
1007 ] | 1007 ] |
1008 | 1008 |
1009 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1009 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1010 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 1010 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
OLD | NEW |