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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 | 253 |
254 'src/third_party/opus/src': | 254 'src/third_party/opus/src': |
255 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + '655cc54c564b84ef2827
f0b2152ce3811046201e', | 255 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + '655cc54c564b84ef2827
f0b2152ce3811046201e', |
256 | 256 |
257 'src/media/cdm/api': | 257 'src/media/cdm/api': |
258 Var('chromium_git') + '/chromium/cdm.git' + '@' + '245af7782c9f54d776722a2c7b
53372ee040e5fc', | 258 Var('chromium_git') + '/chromium/cdm.git' + '@' + '245af7782c9f54d776722a2c7b
53372ee040e5fc', |
259 | 259 |
260 'src/third_party/mesa/src': | 260 'src/third_party/mesa/src': |
261 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', | 261 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', |
262 | 262 |
| 263 'src/third_party/ced/src': |
| 264 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '511859ce93b8b6a1d002b96c79aeb6b184dab44a', |
| 265 |
263 'src/third_party/cld_2/src': | 266 'src/third_party/cld_2/src': |
264 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', | 267 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', |
265 | 268 |
266 'src/third_party/libwebm/source': | 269 'src/third_party/libwebm/source': |
267 Var('chromium_git') + '/webm/libwebm.git' + '@' + '9a235e0bc94319c5f7184bd69c
be5468a74a025c', | 270 Var('chromium_git') + '/webm/libwebm.git' + '@' + '9a235e0bc94319c5f7184bd69c
be5468a74a025c', |
268 | 271 |
269 'src/third_party/pdfium': | 272 'src/third_party/pdfium': |
270 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 273 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
271 | 274 |
272 'src/third_party/boringssl/src': | 275 'src/third_party/boringssl/src': |
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 'src/build/android/download_doclava.py', | 856 'src/build/android/download_doclava.py', |
854 ], | 857 ], |
855 }, | 858 }, |
856 { | 859 { |
857 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 860 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
858 'name': 'gyp', | 861 'name': 'gyp', |
859 'pattern': '.', | 862 'pattern': '.', |
860 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 863 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
861 }, | 864 }, |
862 ] | 865 ] |
OLD | NEW |