| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 # Binaries for nacl sdk. | 335 # Binaries for nacl sdk. |
| 336 'src/third_party/nacl_sdk_binaries': | 336 'src/third_party/nacl_sdk_binaries': |
| 337 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', | 337 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', |
| 338 | 338 |
| 339 # ANGLE uses dEQP for GPU testing | 339 # ANGLE uses dEQP for GPU testing |
| 340 'src/third_party/deqp/src': | 340 'src/third_party/deqp/src': |
| 341 Var('deqp_url') + '@' + Var('deqp_revision'), | 341 Var('deqp_url') + '@' + Var('deqp_revision'), |
| 342 }, | 342 }, |
| 343 'ios': { | 343 'ios': { |
| 344 'src/ios/third_party/earl_grey/src': | 344 'src/ios/third_party/earl_grey/src': |
| 345 Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + 'f
fdbbb7e9e0a3c617d9f110ef752dbd2dc09c919', | 345 Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '3
46a3ab785b2ce1b58bf008191c60c330202bf9f', |
| 346 | 346 |
| 347 'src/ios/third_party/fishhook/src': | 347 'src/ios/third_party/fishhook/src': |
| 348 Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' +
'd172d5247aa590c25d0b1885448bae76036ea22c', | 348 Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' +
'd172d5247aa590c25d0b1885448bae76036ea22c', |
| 349 | 349 |
| 350 'src/ios/third_party/gcdwebserver/src': | 350 'src/ios/third_party/gcdwebserver/src': |
| 351 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '3d5fd0b8281a7224c057deb2d17709b5bea64836', | 351 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '3d5fd0b8281a7224c057deb2d17709b5bea64836', |
| 352 | 352 |
| 353 'src/ios/third_party/ochamcrest/src': | 353 'src/ios/third_party/ochamcrest/src': |
| 354 Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@'
+ 'd7ee4ecfb6bd13c3c8d364682b6228ccd86e1e1a', | 354 Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@'
+ 'd7ee4ecfb6bd13c3c8d364682b6228ccd86e1e1a', |
| 355 | 355 |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 'src/build/android/download_doclava.py', | 855 'src/build/android/download_doclava.py', |
| 856 ], | 856 ], |
| 857 }, | 857 }, |
| 858 { | 858 { |
| 859 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 859 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 860 'name': 'gyp', | 860 'name': 'gyp', |
| 861 'pattern': '.', | 861 'pattern': '.', |
| 862 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 862 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 863 }, | 863 }, |
| 864 ] | 864 ] |
| OLD | NEW |