| 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 'src/third_party/pywebsocket/src': | 245 'src/third_party/pywebsocket/src': |
| 246 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'09d842794c14ca064f8a4223b313ac2c84bd33c8', | 246 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'09d842794c14ca064f8a4223b313ac2c84bd33c8', |
| 247 | 247 |
| 248 'src/third_party/opus/src': | 248 'src/third_party/opus/src': |
| 249 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', | 249 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', |
| 250 | 250 |
| 251 'src/media/cdm/api': | 251 'src/media/cdm/api': |
| 252 Var('chromium_git') + '/chromium/cdm.git' + '@' + 'a4773c3cec827c3a880e8a2c22
e43a287ced0d20', | 252 Var('chromium_git') + '/chromium/cdm.git' + '@' + 'a4773c3cec827c3a880e8a2c22
e43a287ced0d20', |
| 253 | 253 |
| 254 'src/third_party/mesa/src': | 254 'src/third_party/mesa/src': |
| 255 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'a3dc7d623fbb83a6246a
df3d363922ad3909c14c', | 255 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', |
| 256 | 256 |
| 257 'src/third_party/cld_2/src': | 257 'src/third_party/cld_2/src': |
| 258 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', | 258 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', |
| 259 | 259 |
| 260 'src/third_party/libwebm/source': | 260 'src/third_party/libwebm/source': |
| 261 Var('chromium_git') + '/webm/libwebm.git' + '@' + '75a6d2da8b63e0c446ec0ce1ac
942c2962d959d7', | 261 Var('chromium_git') + '/webm/libwebm.git' + '@' + '75a6d2da8b63e0c446ec0ce1ac
942c2962d959d7', |
| 262 | 262 |
| 263 'src/third_party/pdfium': | 263 'src/third_party/pdfium': |
| 264 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 264 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
| 265 | 265 |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 }, | 810 }, |
| 811 { | 811 { |
| 812 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 812 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 813 'name': 'gyp', | 813 'name': 'gyp', |
| 814 'pattern': '.', | 814 'pattern': '.', |
| 815 'action': ['python', 'src/build/gyp_chromium'], | 815 'action': ['python', 'src/build/gyp_chromium'], |
| 816 }, | 816 }, |
| 817 ] | 817 ] |
| 818 | 818 |
| 819 | 819 |
| OLD | NEW |