| 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 | 408 |
| 409 # gRPC, an RPC framework. For Blimp use only. | 409 # gRPC, an RPC framework. For Blimp use only. |
| 410 'src/third_party/grpc': | 410 'src/third_party/grpc': |
| 411 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + 'c1f618fb61b
5258c1718e7ae60a6a7dbf6f912fb', | 411 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + 'c1f618fb61b
5258c1718e7ae60a6a7dbf6f912fb', |
| 412 }, | 412 }, |
| 413 'android': { | 413 'android': { |
| 414 'src/third_party/android_protobuf/src': | 414 'src/third_party/android_protobuf/src': |
| 415 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', | 415 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', |
| 416 | 416 |
| 417 'src/third_party/android_tools': | 417 'src/third_party/android_tools': |
| 418 Var('chromium_git') + '/android_tools.git' + '@' + '5b5f2f60b78198eaef25d44
2ac60f823142a8a6e', | 418 Var('chromium_git') + '/android_tools.git' + '@' + '20a4bd598cf3ba843431115
6ce94c110a0024fe7', |
| 419 | 419 |
| 420 'src/third_party/apache-mime4j': | 420 'src/third_party/apache-mime4j': |
| 421 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 421 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
| 422 | 422 |
| 423 'src/third_party/apache-portable-runtime/src': | 423 'src/third_party/apache-portable-runtime/src': |
| 424 Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76a
8c4277e09a82eaa229e35246edea1ee0a6a1', | 424 Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76a
8c4277e09a82eaa229e35246edea1ee0a6a1', |
| 425 | 425 |
| 426 'src/third_party/appurify-python/src': | 426 'src/third_party/appurify-python/src': |
| 427 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | 427 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
| 428 | 428 |
| (...skipping 525 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 |