| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 'src/third_party/webpagereplay': | 239 'src/third_party/webpagereplay': |
| 240 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '7564939bdf6482d57b9bd5e9c931679f96d8cf75', | 240 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '7564939bdf6482d57b9bd5e9c931679f96d8cf75', |
| 241 | 241 |
| 242 'src/third_party/pywebsocket/src': | 242 'src/third_party/pywebsocket/src': |
| 243 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', | 243 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 244 | 244 |
| 245 'src/third_party/opus/src': | 245 'src/third_party/opus/src': |
| 246 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', | 246 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'cae696156f1e60006e39
821e79a1811ae1933c69', |
| 247 | 247 |
| 248 'src/media/cdm/api': | 248 'src/media/cdm/api': |
| 249 Var('chromium_git') + '/chromium/cdm.git' + '@' + 'a4773c3cec827c3a880e8a2c22
e43a287ced0d20', | 249 Var('chromium_git') + '/chromium/cdm.git' + '@' + '1dea7088184dec2ebe4a8b3800
aabb0afbb4b88a', |
| 250 | 250 |
| 251 'src/third_party/mesa/src': | 251 'src/third_party/mesa/src': |
| 252 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', | 252 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', |
| 253 | 253 |
| 254 'src/third_party/cld_2/src': | 254 'src/third_party/cld_2/src': |
| 255 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', | 255 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', |
| 256 | 256 |
| 257 'src/third_party/libwebm/source': | 257 'src/third_party/libwebm/source': |
| 258 Var('chromium_git') + '/webm/libwebm.git' + '@' + '75a6d2da8b63e0c446ec0ce1ac
942c2962d959d7', | 258 Var('chromium_git') + '/webm/libwebm.git' + '@' + '75a6d2da8b63e0c446ec0ce1ac
942c2962d959d7', |
| 259 | 259 |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 'src/tools', | 809 'src/tools', |
| 810 ], | 810 ], |
| 811 }, | 811 }, |
| 812 { | 812 { |
| 813 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 813 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 814 'name': 'gyp', | 814 'name': 'gyp', |
| 815 'pattern': '.', | 815 'pattern': '.', |
| 816 'action': ['python', 'src/build/gyp_chromium'], | 816 'action': ['python', 'src/build/gyp_chromium'], |
| 817 }, | 817 }, |
| 818 ] | 818 ] |
| OLD | NEW |