| 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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '3d5fd0b8281a7224c057deb2d17709b5bea64836', | 347 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '3d5fd0b8281a7224c057deb2d17709b5bea64836', |
| 348 | 348 |
| 349 'src/ios/third_party/material_text_accessibility_ios/src': | 349 'src/ios/third_party/material_text_accessibility_ios/src': |
| 350 Var('chromium_git') + '/external/github.com/google/material-text-accessibil
ity-ios.git' + '@' + '5a8cb31cf26d661f4b0f5fbcc9119cf3930ed098', | 350 Var('chromium_git') + '/external/github.com/google/material-text-accessibil
ity-ios.git' + '@' + '5a8cb31cf26d661f4b0f5fbcc9119cf3930ed098', |
| 351 | 351 |
| 352 'src/ios/third_party/ochamcrest/src': | 352 'src/ios/third_party/ochamcrest/src': |
| 353 Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@'
+ 'd7ee4ecfb6bd13c3c8d364682b6228ccd86e1e1a', | 353 Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@'
+ 'd7ee4ecfb6bd13c3c8d364682b6228ccd86e1e1a', |
| 354 | 354 |
| 355 'src/third_party/google_toolbox_for_mac/src': | 355 'src/third_party/google_toolbox_for_mac/src': |
| 356 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.
git' + '@' + Var('google_toolbox_for_mac_revision'), | 356 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.
git' + '@' + Var('google_toolbox_for_mac_revision'), |
| 357 | |
| 358 # class-dump utility to generate header files for undocumented SDKs | |
| 359 'src/third_party/class-dump/src': | |
| 360 Var('chromium_git') + '/external/github.com/nygard/class-dump.git' + '@' +
'978d177ca6f0d2e5e34acf3e8dadc63e3140ebbc', | |
| 361 }, | 357 }, |
| 362 'mac': { | 358 'mac': { |
| 363 'src/third_party/google_toolbox_for_mac/src': | 359 'src/third_party/google_toolbox_for_mac/src': |
| 364 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.
git' + '@' + Var('google_toolbox_for_mac_revision'), | 360 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.
git' + '@' + Var('google_toolbox_for_mac_revision'), |
| 365 | 361 |
| 366 | 362 |
| 367 'src/third_party/lighttpd': | 363 'src/third_party/lighttpd': |
| 368 Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_r
evision'), | 364 Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_r
evision'), |
| 369 | 365 |
| 370 'src/chrome/installer/mac/third_party/xz/xz': | 366 'src/chrome/installer/mac/third_party/xz/xz': |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1010 ], | 1006 ], |
| 1011 }, | 1007 }, |
| 1012 ] | 1008 ] |
| 1013 | 1009 |
| 1014 recursedeps = [ | 1010 recursedeps = [ |
| 1015 # android_tools manages the NDK. | 1011 # android_tools manages the NDK. |
| 1016 'src/third_party/android_tools', | 1012 'src/third_party/android_tools', |
| 1017 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1013 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1018 ("src/third_party/angle", "DEPS.chromium"), | 1014 ("src/third_party/angle", "DEPS.chromium"), |
| 1019 ] | 1015 ] |
| OLD | NEW |