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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 'src/third_party/libphonenumber/dist': | 234 'src/third_party/libphonenumber/dist': |
235 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097
d67e3c429ead6790ad91d36cf4', | 235 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097
d67e3c429ead6790ad91d36cf4', |
236 | 236 |
237 'src/third_party/webpagereplay': | 237 'src/third_party/webpagereplay': |
238 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '3cd3a3f6f06a1b87b14b9162c7eb16d23d141241', | 238 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '3cd3a3f6f06a1b87b14b9162c7eb16d23d141241', |
239 | 239 |
240 'src/third_party/pywebsocket/src': | 240 'src/third_party/pywebsocket/src': |
241 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', | 241 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
242 | 242 |
243 'src/third_party/opus/src': | 243 'src/third_party/opus/src': |
244 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + '655cc54c564b84ef2827
f0b2152ce3811046201e', | 244 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'aa32042a50f2cbe0ff9d
339948cb4712f5cc3d6e', |
245 | 245 |
246 'src/media/cdm/api': | 246 'src/media/cdm/api': |
247 Var('chromium_git') + '/chromium/cdm.git' + '@' + '245af7782c9f54d776722a2c7b
53372ee040e5fc', | 247 Var('chromium_git') + '/chromium/cdm.git' + '@' + '245af7782c9f54d776722a2c7b
53372ee040e5fc', |
248 | 248 |
249 'src/third_party/mesa/src': | 249 'src/third_party/mesa/src': |
250 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', | 250 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', |
251 | 251 |
252 'src/third_party/ced/src': | 252 'src/third_party/ced/src': |
253 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '45c3d4a3d7ee40adf271748f3c4177fa293800e1', | 253 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '45c3d4a3d7ee40adf271748f3c4177fa293800e1', |
254 | 254 |
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
954 { | 954 { |
955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
956 'name': 'gyp', | 956 'name': 'gyp', |
957 'pattern': '.', | 957 'pattern': '.', |
958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
959 }, | 959 }, |
960 ] | 960 ] |
961 | 961 |
962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
OLD | NEW |