| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 'src/third_party/opus/src': | 249 'src/third_party/opus/src': |
| 250 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + '655cc54c564b84ef2827
f0b2152ce3811046201e', | 250 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + '655cc54c564b84ef2827
f0b2152ce3811046201e', |
| 251 | 251 |
| 252 'src/media/cdm/api': | 252 'src/media/cdm/api': |
| 253 Var('chromium_git') + '/chromium/cdm.git' + '@' + '245af7782c9f54d776722a2c7b
53372ee040e5fc', | 253 Var('chromium_git') + '/chromium/cdm.git' + '@' + '245af7782c9f54d776722a2c7b
53372ee040e5fc', |
| 254 | 254 |
| 255 'src/third_party/mesa/src': | 255 'src/third_party/mesa/src': |
| 256 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', | 256 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', |
| 257 | 257 |
| 258 'src/third_party/ced/src': | 258 'src/third_party/ced/src': |
| 259 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '511859ce93b8b6a1d002b96c79aeb6b184dab44a', | 259 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '8ed7d41a5dc6539af30dc05449d10829a51ed183', |
| 260 | 260 |
| 261 'src/third_party/cld_2/src': | 261 'src/third_party/cld_2/src': |
| 262 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', | 262 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', |
| 263 | 263 |
| 264 'src/third_party/libwebm/source': | 264 'src/third_party/libwebm/source': |
| 265 Var('chromium_git') + '/webm/libwebm.git' + '@' + '9a235e0bc94319c5f7184bd69c
be5468a74a025c', | 265 Var('chromium_git') + '/webm/libwebm.git' + '@' + '9a235e0bc94319c5f7184bd69c
be5468a74a025c', |
| 266 | 266 |
| 267 'src/third_party/pdfium': | 267 'src/third_party/pdfium': |
| 268 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 268 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
| 269 | 269 |
| (...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 { | 867 { |
| 868 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 868 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 869 'name': 'gyp', | 869 'name': 'gyp', |
| 870 'pattern': '.', | 870 'pattern': '.', |
| 871 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 871 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 872 }, | 872 }, |
| 873 ] | 873 ] |
| 874 | 874 |
| 875 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 875 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 876 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 876 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |