| 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/media/cdm/api': | 248 'src/media/cdm/api': |
| 249 Var('chromium_git') + '/chromium/cdm.git' + '@' + '1dea7088184dec2ebe4a8b3800
aabb0afbb4b88a', | 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' + '@' + '9a235e0bc94319c5f7184bd69c
be5468a74a025c', |
| 259 | 259 |
| 260 'src/third_party/pdfium': | 260 'src/third_party/pdfium': |
| 261 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), | 261 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
| 262 | 262 |
| 263 'src/third_party/boringssl/src': | 263 'src/third_party/boringssl/src': |
| 264 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), | 264 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_re
vision'), |
| 265 | 265 |
| 266 'src/third_party/py_trace_event/src': | 266 'src/third_party/py_trace_event/src': |
| 267 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', | 267 Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430
de2b9e53dea57a77b4c3ac9b30', |
| 268 | 268 |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 846 'src/build/android/download_doclava.py', | 846 'src/build/android/download_doclava.py', |
| 847 ], | 847 ], |
| 848 }, | 848 }, |
| 849 { | 849 { |
| 850 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 850 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 851 'name': 'gyp', | 851 'name': 'gyp', |
| 852 'pattern': '.', | 852 'pattern': '.', |
| 853 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 853 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 854 }, | 854 }, |
| 855 ] | 855 ] |
| OLD | NEW |