| 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/libphonenumber/dist': | 239 'src/third_party/libphonenumber/dist': |
| 240 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097
d67e3c429ead6790ad91d36cf4', | 240 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097
d67e3c429ead6790ad91d36cf4', |
| 241 | 241 |
| 242 'src/third_party/webpagereplay': | 242 'src/third_party/webpagereplay': |
| 243 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '3cd3a3f6f06a1b87b14b9162c7eb16d23d141241', | 243 Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '
@' + '3cd3a3f6f06a1b87b14b9162c7eb16d23d141241', |
| 244 | 244 |
| 245 'src/third_party/pywebsocket/src': | 245 'src/third_party/pywebsocket/src': |
| 246 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', | 246 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' +
'2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 247 | 247 |
| 248 'src/media/cdm/api': | 248 'src/media/cdm/api': |
| 249 Var('chromium_git') + '/chromium/cdm.git' + '@' + '245af7782c9f54d776722a2c7b
53372ee040e5fc', | 249 Var('chromium_git') + '/chromium/cdm.git' + '@' + '6a62dcef02523e2d5be4defb68
a7d9363c7389d2', |
| 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/ced/src': | 254 'src/third_party/ced/src': |
| 255 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '9012c0ab648025dd0f8df14294bf5d6d73793ac9', | 255 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
' + '9012c0ab648025dd0f8df14294bf5d6d73793ac9', |
| 256 | 256 |
| 257 'src/third_party/swiftshader': | 257 'src/third_party/swiftshader': |
| 258 'https://swiftshader.googlesource.com/SwiftShader.git' + '@' + Var('swiftsha
der_revision'), | 258 'https://swiftshader.googlesource.com/SwiftShader.git' + '@' + Var('swiftsha
der_revision'), |
| 259 | 259 |
| (...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1001 'name': 'doclava', | 1001 'name': 'doclava', |
| 1002 'pattern': '.', | 1002 'pattern': '.', |
| 1003 'action': ['python', | 1003 'action': ['python', |
| 1004 'src/build/android/download_doclava.py', | 1004 'src/build/android/download_doclava.py', |
| 1005 ], | 1005 ], |
| 1006 }, | 1006 }, |
| 1007 ] | 1007 ] |
| 1008 | 1008 |
| 1009 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1009 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1010 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 1010 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |