| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 'ios': { | 339 'ios': { |
| 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': |
| 350 Var('chromium_git') + '/external/github.com/google/material-text-accessibil
ity-ios.git' + '@' + '5b7c4f6382d7241a05caf82e749abf5bc92faa86', |
| 351 |
| 349 'src/ios/third_party/ochamcrest/src': | 352 'src/ios/third_party/ochamcrest/src': |
| 350 Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@'
+ 'd7ee4ecfb6bd13c3c8d364682b6228ccd86e1e1a', | 353 Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@'
+ 'd7ee4ecfb6bd13c3c8d364682b6228ccd86e1e1a', |
| 351 | 354 |
| 352 'src/third_party/google_toolbox_for_mac/src': | 355 'src/third_party/google_toolbox_for_mac/src': |
| 353 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'), |
| 354 | 357 |
| 355 # class-dump utility to generate header files for undocumented SDKs | 358 # class-dump utility to generate header files for undocumented SDKs |
| 356 'src/third_party/class-dump/src': | 359 'src/third_party/class-dump/src': |
| 357 Var('chromium_git') + '/external/github.com/nygard/class-dump.git' + '@' +
'978d177ca6f0d2e5e34acf3e8dadc63e3140ebbc', | 360 Var('chromium_git') + '/external/github.com/nygard/class-dump.git' + '@' +
'978d177ca6f0d2e5e34acf3e8dadc63e3140ebbc', |
| 358 }, | 361 }, |
| (...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1001 'name': 'doclava', | 1004 'name': 'doclava', |
| 1002 'pattern': '.', | 1005 'pattern': '.', |
| 1003 'action': ['python', | 1006 'action': ['python', |
| 1004 'src/build/android/download_doclava.py', | 1007 'src/build/android/download_doclava.py', |
| 1005 ], | 1008 ], |
| 1006 }, | 1009 }, |
| 1007 ] | 1010 ] |
| 1008 | 1011 |
| 1009 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1012 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1010 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 1013 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |