| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 'src/third_party/webpagereplay': | 248 'src/third_party/webpagereplay': |
| 249 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '3cd3a3f6f06a1b87b14b9162c7eb16d23d141241', | 249 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '3cd3a3f6f06a1b87b14b9162c7eb16d23d141241', |
| 250 | 250 |
| 251 'src/third_party/pywebsocket/src': | 251 'src/third_party/pywebsocket/src': |
| 252 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', | 252 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 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' + '@' + '1dea7088184dec2ebe4a8b3800
aabb0afbb4b88a', | 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/cld_2/src': | 263 'src/third_party/cld_2/src': |
| 264 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', | 264 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
b58a5d7690ebf05a91406f371ce00c3daf31c0', |
| 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 |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 'src/build/android/download_doclava.py', | 852 'src/build/android/download_doclava.py', |
| 853 ], | 853 ], |
| 854 }, | 854 }, |
| 855 { | 855 { |
| 856 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 856 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 857 'name': 'gyp', | 857 'name': 'gyp', |
| 858 'pattern': '.', | 858 'pattern': '.', |
| 859 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 859 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 860 }, | 860 }, |
| 861 ] | 861 ] |
| OLD | NEW |