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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 'src/ios/third_party/earl_grey/src': | 340 'src/ios/third_party/earl_grey/src': |
341 Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '0
90aa5fa68d4c422af4ee84912d30bc89a3e8820', | 341 Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '0
90aa5fa68d4c422af4ee84912d30bc89a3e8820', |
342 | 342 |
343 'src/ios/third_party/fishhook/src': | 343 'src/ios/third_party/fishhook/src': |
344 Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' +
'd172d5247aa590c25d0b1885448bae76036ea22c', | 344 Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' +
'd172d5247aa590c25d0b1885448bae76036ea22c', |
345 | 345 |
346 'src/ios/third_party/gcdwebserver/src': | 346 'src/ios/third_party/gcdwebserver/src': |
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' + '@' + '5b7c4f6382d7241a05caf82e749abf5bc92faa86', | 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 | 357 |
358 # class-dump utility to generate header files for undocumented SDKs | 358 # class-dump utility to generate header files for undocumented SDKs |
359 'src/third_party/class-dump/src': | 359 'src/third_party/class-dump/src': |
360 Var('chromium_git') + '/external/github.com/nygard/class-dump.git' + '@' +
'978d177ca6f0d2e5e34acf3e8dadc63e3140ebbc', | 360 Var('chromium_git') + '/external/github.com/nygard/class-dump.git' + '@' +
'978d177ca6f0d2e5e34acf3e8dadc63e3140ebbc', |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1010 ], | 1010 ], |
1011 }, | 1011 }, |
1012 ] | 1012 ] |
1013 | 1013 |
1014 recursedeps = [ | 1014 recursedeps = [ |
1015 # android_tools manages the NDK. | 1015 # android_tools manages the NDK. |
1016 'src/third_party/android_tools', | 1016 'src/third_party/android_tools', |
1017 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1017 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1018 ("src/third_party/angle", "DEPS.chromium"), | 1018 ("src/third_party/angle", "DEPS.chromium"), |
1019 ] | 1019 ] |
OLD | NEW |