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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 # Wayland protocols that add functionality not available in the core protoco
l. | 414 # Wayland protocols that add functionality not available in the core protoco
l. |
415 'src/third_party/wayland-protocols/src': | 415 'src/third_party/wayland-protocols/src': |
416 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd-protocols.git' + '@' + '2e541a36deff5f2e16e25e27f7f93d26822eecc2', | 416 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd-protocols.git' + '@' + '2e541a36deff5f2e16e25e27f7f93d26822eecc2', |
417 | 417 |
418 # Wireless Display Software. Used on Chrome OS. | 418 # Wireless Display Software. Used on Chrome OS. |
419 'src/third_party/wds/src': | 419 'src/third_party/wds/src': |
420 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d9
5f3000bf5c8e16a79dbbbf22d554a5', | 420 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d9
5f3000bf5c8e16a79dbbbf22d554a5', |
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' + '@' + '7032ff02c4
05fc51cfe2a4b8e350547f046ee250', |
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' + '@' + '3d6ba29a6693bf3db1343f
c213eea47c7d940413', |
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', |
(...skipping 584 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 |