| 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 | 233 |
| 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': | |
| 244 Var('chromium_git') + '/chromium/deps/opus.git' + '@' + 'aa32042a50f2cbe0ff9d
339948cb4712f5cc3d6e', | |
| 245 | |
| 246 'src/media/cdm/api': | 243 'src/media/cdm/api': |
| 247 Var('chromium_git') + '/chromium/cdm.git' + '@' + '245af7782c9f54d776722a2c7b
53372ee040e5fc', | 244 Var('chromium_git') + '/chromium/cdm.git' + '@' + '245af7782c9f54d776722a2c7b
53372ee040e5fc', |
| 248 | 245 |
| 249 'src/third_party/mesa/src': | 246 'src/third_party/mesa/src': |
| 250 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', | 247 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e70
35ca882cc77f85793fef', |
| 251 | 248 |
| 252 'src/third_party/ced/src': | 249 'src/third_party/ced/src': |
| 253 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '9012c0ab648025dd0f8df14294bf5d6d73793ac9', | 250 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '9012c0ab648025dd0f8df14294bf5d6d73793ac9', |
| 254 | 251 |
| 255 'src/third_party/cld_2/src': | 252 'src/third_party/cld_2/src': |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 970 'name': 'doclava', | 967 'name': 'doclava', |
| 971 'pattern': '.', | 968 'pattern': '.', |
| 972 'action': ['python', | 969 'action': ['python', |
| 973 'src/build/android/download_doclava.py', | 970 'src/build/android/download_doclava.py', |
| 974 ], | 971 ], |
| 975 }, | 972 }, |
| 976 ] | 973 ] |
| 977 | 974 |
| 978 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 975 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 979 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 976 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |