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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 | 421 |
422 # gRPC, an RPC framework. For Blimp use only. | 422 # gRPC, an RPC framework. For Blimp use only. |
423 'src/third_party/grpc': | 423 'src/third_party/grpc': |
424 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + '3f186a41da
a7c951234ea98cfaa50996047a47fd', | 424 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + '3f186a41da
a7c951234ea98cfaa50996047a47fd', |
425 }, | 425 }, |
426 'android': { | 426 'android': { |
427 'src/third_party/android_protobuf/src': | 427 'src/third_party/android_protobuf/src': |
428 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc
72e97f7fe08bb756958a2cf090f4e7', | 428 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc
72e97f7fe08bb756958a2cf090f4e7', |
429 | 429 |
430 'src/third_party/android_tools': | 430 'src/third_party/android_tools': |
431 Var('chromium_git') + '/android_tools.git' + '@' + '3d6ba29a6693bf3db1343f
c213eea47c7d940413', | 431 Var('chromium_git') + '/android_tools.git' + '@' + '25d57ead05d3dfef26e9c1
9b13ed10b0a69829cf', |
432 | 432 |
433 'src/third_party/apache-mime4j': | 433 'src/third_party/apache-mime4j': |
434 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108
bff4b6cf0a2e86ff58b3d025934ebe3a', | 434 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108
bff4b6cf0a2e86ff58b3d025934ebe3a', |
435 | 435 |
436 'src/third_party/apache-portable-runtime/src': | 436 'src/third_party/apache-portable-runtime/src': |
437 Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76
a8c4277e09a82eaa229e35246edea1ee0a6a1', | 437 Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76
a8c4277e09a82eaa229e35246edea1ee0a6a1', |
438 | 438 |
439 'src/third_party/errorprone/lib': | 439 'src/third_party/errorprone/lib': |
440 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', | 440 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', |
441 | 441 |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1019 ] | 1019 ] |
1020 | 1020 |
1021 recursedeps = [ | 1021 recursedeps = [ |
1022 # buildtools provides clang_format, libc++, and libc++abi | 1022 # buildtools provides clang_format, libc++, and libc++abi |
1023 'src/buildtools', | 1023 'src/buildtools', |
1024 # android_tools manages the NDK. | 1024 # android_tools manages the NDK. |
1025 'src/third_party/android_tools', | 1025 'src/third_party/android_tools', |
1026 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1026 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1027 ("src/third_party/angle", "DEPS.chromium"), | 1027 ("src/third_party/angle", "DEPS.chromium"), |
1028 ] | 1028 ] |
OLD | NEW |