| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 # Dependencies used by libjpeg-turbo | 320 # Dependencies used by libjpeg-turbo |
| 321 'src/third_party/yasm/binaries': | 321 'src/third_party/yasm/binaries': |
| 322 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4b
0aa06da24ef8b123058bb61ee468881', | 322 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4b
0aa06da24ef8b123058bb61ee468881', |
| 323 | 323 |
| 324 # Binaries for nacl sdk. | 324 # Binaries for nacl sdk. |
| 325 'src/third_party/nacl_sdk_binaries': | 325 'src/third_party/nacl_sdk_binaries': |
| 326 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', | 326 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', |
| 327 }, | 327 }, |
| 328 'ios': { | 328 'ios': { |
| 329 'src/ios/third_party/earl_grey/src': | 329 'src/ios/third_party/earl_grey/src': |
| 330 Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '6
b23028b634974fb72dc960f2c063949076cf78f', | 330 Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '0
90aa5fa68d4c422af4ee84912d30bc89a3e8820', |
| 331 | 331 |
| 332 'src/ios/third_party/fishhook/src': | 332 'src/ios/third_party/fishhook/src': |
| 333 Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' +
'd172d5247aa590c25d0b1885448bae76036ea22c', | 333 Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' +
'd172d5247aa590c25d0b1885448bae76036ea22c', |
| 334 | 334 |
| 335 'src/ios/third_party/gcdwebserver/src': | 335 'src/ios/third_party/gcdwebserver/src': |
| 336 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '3d5fd0b8281a7224c057deb2d17709b5bea64836', | 336 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '3d5fd0b8281a7224c057deb2d17709b5bea64836', |
| 337 | 337 |
| 338 'src/ios/third_party/ochamcrest/src': | 338 'src/ios/third_party/ochamcrest/src': |
| 339 Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@'
+ 'd7ee4ecfb6bd13c3c8d364682b6228ccd86e1e1a', | 339 Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@'
+ 'd7ee4ecfb6bd13c3c8d364682b6228ccd86e1e1a', |
| 340 | 340 |
| (...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 { | 954 { |
| 955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 956 'name': 'gyp', | 956 'name': 'gyp', |
| 957 'pattern': '.', | 957 'pattern': '.', |
| 958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 959 }, | 959 }, |
| 960 ] | 960 ] |
| 961 | 961 |
| 962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |