| 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 # Graphics buffer allocator for Chrome OS. | 407 # Graphics buffer allocator for Chrome OS. |
| 408 'src/third_party/minigbm/src': | 408 'src/third_party/minigbm/src': |
| 409 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'f9e7c4c8e
91fb354abf714c7a5c89b4990814ff3', | 409 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'f9e7c4c8e
91fb354abf714c7a5c89b4990814ff3', |
| 410 | 410 |
| 411 # Display server protocol for Linux. | 411 # Display server protocol for Linux. |
| 412 'src/third_party/wayland/src': | 412 'src/third_party/wayland/src': |
| 413 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d.git' + '@' + '47163797f810373c81b6e13b7a8a245eb9877785', | 413 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d.git' + '@' + '47163797f810373c81b6e13b7a8a245eb9877785', |
| 414 | 414 |
| 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' + '@' + '2e541a36deff5f2e16e25e27f7f93d26822eecc2', |
| 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' + '@' + '3f186a41daa
7c951234ea98cfaa50996047a47fd', | 425 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + '3f186a41daa
7c951234ea98cfaa50996047a47fd', |
| 426 }, | 426 }, |
| 427 'android': { | 427 'android': { |
| (...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1010 ], | 1010 ], |
| 1011 }, | 1011 }, |
| 1012 ] | 1012 ] |
| 1013 | 1013 |
| 1014 recursedeps = [ | 1014 recursedeps = [ |
| 1015 # android_tools manages the NDK. | 1015 # android_tools manages the NDK. |
| 1016 'src/third_party/android_tools', | 1016 'src/third_party/android_tools', |
| 1017 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1017 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1018 ("src/third_party/angle", "DEPS.chromium"), | 1018 ("src/third_party/angle", "DEPS.chromium"), |
| 1019 ] | 1019 ] |
| OLD | NEW |