| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 'src/ios/third_party/earl_grey/src': | 349 'src/ios/third_party/earl_grey/src': |
| 350 Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '
625b2b7cdaf9371ae2b001d6cdc23b1790d41cd8', | 350 Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '
625b2b7cdaf9371ae2b001d6cdc23b1790d41cd8', |
| 351 | 351 |
| 352 'src/ios/third_party/fishhook/src': | 352 'src/ios/third_party/fishhook/src': |
| 353 Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' +
'd172d5247aa590c25d0b1885448bae76036ea22c', | 353 Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' +
'd172d5247aa590c25d0b1885448bae76036ea22c', |
| 354 | 354 |
| 355 'src/ios/third_party/gcdwebserver/src': | 355 'src/ios/third_party/gcdwebserver/src': |
| 356 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '
@' + '43555c66627f6ed44817855a0f6d465f559d30e0', | 356 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '
@' + '43555c66627f6ed44817855a0f6d465f559d30e0', |
| 357 | 357 |
| 358 'src/ios/third_party/material_components_ios/src': | 358 'src/ios/third_party/material_components_ios/src': |
| 359 Var('chromium_git') + '/external/github.com/material-components/material-c
omponents-ios.git' + '@' + 'b1eb638d70792b7aa06118b128e3518c20e2aaae', | 359 Var('chromium_git') + '/external/github.com/material-components/material-c
omponents-ios.git' + '@' + '43c7f9494f171baaf08d75cf3646eeb98a03252f', |
| 360 | 360 |
| 361 'src/ios/third_party/material_font_disk_loader_ios/src': | 361 'src/ios/third_party/material_font_disk_loader_ios/src': |
| 362 Var('chromium_git') + '/external/github.com/material-foundation/material-f
ont-disk-loader-ios.git' + '@' + '93acc021e3034898716028822cb802a3a816be7e', | 362 Var('chromium_git') + '/external/github.com/material-foundation/material-f
ont-disk-loader-ios.git' + '@' + '93acc021e3034898716028822cb802a3a816be7e', |
| 363 | 363 |
| 364 'src/ios/third_party/material_roboto_font_loader_ios/src': | 364 'src/ios/third_party/material_roboto_font_loader_ios/src': |
| 365 Var('chromium_git') + '/external/github.com/material-foundation/material-r
oboto-font-loader-ios.git' + '@' + '2e25f314512e71d3413315a20e62a4d0126671f5', | 365 Var('chromium_git') + '/external/github.com/material-foundation/material-r
oboto-font-loader-ios.git' + '@' + '2e25f314512e71d3413315a20e62a4d0126671f5', |
| 366 | 366 |
| 367 'src/ios/third_party/material_sprited_animation_view_ios/src': | 367 'src/ios/third_party/material_sprited_animation_view_ios/src': |
| 368 Var('chromium_git') + '/external/github.com/material-foundation/material-s
prited-animation-view-ios.git' + '@' + 'c6e16d06bdafd95540c62b3402d9414692fbca81
', | 368 Var('chromium_git') + '/external/github.com/material-foundation/material-s
prited-animation-view-ios.git' + '@' + 'c6e16d06bdafd95540c62b3402d9414692fbca81
', |
| 369 | 369 |
| (...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1104 ] | 1104 ] |
| 1105 | 1105 |
| 1106 recursedeps = [ | 1106 recursedeps = [ |
| 1107 # buildtools provides clang_format, libc++, and libc++abi | 1107 # buildtools provides clang_format, libc++, and libc++abi |
| 1108 'src/buildtools', | 1108 'src/buildtools', |
| 1109 # android_tools manages the NDK. | 1109 # android_tools manages the NDK. |
| 1110 'src/third_party/android_tools', | 1110 'src/third_party/android_tools', |
| 1111 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1111 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1112 ("src/third_party/angle", "DEPS.chromium"), | 1112 ("src/third_party/angle", "DEPS.chromium"), |
| 1113 ] | 1113 ] |
| OLD | NEW |