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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 # Wayland protocols that add functionality not available in the core protoco
l. | 415 # Wayland protocols that add functionality not available in the core protoco
l. |
416 'src/third_party/wayland-protocols/src': | 416 'src/third_party/wayland-protocols/src': |
417 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '65d09ef404fb26cb513f4f836e904f415c425a8f', | 417 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '65d09ef404fb26cb513f4f836e904f415c425a8f', |
418 | 418 |
419 # Wireless Display Software. Used on Chrome OS. | 419 # Wireless Display Software. Used on Chrome OS. |
420 'src/third_party/wds/src': | 420 'src/third_party/wds/src': |
421 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95
f3000bf5c8e16a79dbbbf22d554a5', | 421 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95
f3000bf5c8e16a79dbbbf22d554a5', |
422 | 422 |
423 # gRPC, an RPC framework. For Blimp use only. | 423 # gRPC, an RPC framework. For Blimp use only. |
424 'src/third_party/grpc': | 424 'src/third_party/grpc': |
425 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + 'dc44fe515c8
c30093ea8b2f14230123959c886e8', | 425 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + '3f186a41daa
7c951234ea98cfaa50996047a47fd', |
426 }, | 426 }, |
427 'android': { | 427 'android': { |
428 'src/third_party/android_protobuf/src': | 428 'src/third_party/android_protobuf/src': |
429 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', | 429 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', |
430 | 430 |
431 'src/third_party/android_tools': | 431 'src/third_party/android_tools': |
432 Var('chromium_git') + '/android_tools.git' + '@' + '25d57ead05d3dfef26e9c19
b13ed10b0a69829cf', | 432 Var('chromium_git') + '/android_tools.git' + '@' + '25d57ead05d3dfef26e9c19
b13ed10b0a69829cf', |
433 | 433 |
434 'src/third_party/apache-mime4j': | 434 'src/third_party/apache-mime4j': |
435 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 435 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1022 ], | 1022 ], |
1023 }, | 1023 }, |
1024 ] | 1024 ] |
1025 | 1025 |
1026 recursedeps = [ | 1026 recursedeps = [ |
1027 # android_tools manages the NDK. | 1027 # android_tools manages the NDK. |
1028 'src/third_party/android_tools', | 1028 'src/third_party/android_tools', |
1029 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1029 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1030 ("src/third_party/angle", "DEPS.chromium"), | 1030 ("src/third_party/angle", "DEPS.chromium"), |
1031 ] | 1031 ] |
OLD | NEW |