| 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 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a34
78561deb6ae4798175094be8a26c2', | 418 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a34
78561deb6ae4798175094be8a26c2', |
| 419 | 419 |
| 420 # Used for embedded builds. CrOS & Linux use the system version. | 420 # Used for embedded builds. CrOS & Linux use the system version. |
| 421 'src/third_party/fontconfig/src': | 421 'src/third_party/fontconfig/src': |
| 422 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1
b749f9823c51827a60aeb5c1', | 422 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1
b749f9823c51827a60aeb5c1', |
| 423 | 423 |
| 424 # Graphics buffer allocator for Chrome OS. | 424 # Graphics buffer allocator for Chrome OS. |
| 425 'src/third_party/minigbm/src': | 425 'src/third_party/minigbm/src': |
| 426 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '3345977b
5e9ef13f97e2e858241297fc4bfc7401', | 426 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '3345977b
5e9ef13f97e2e858241297fc4bfc7401', |
| 427 | 427 |
| 428 # Userspace interface to kernel DRM services. |
| 429 'src/third_party/libdrm/src': |
| 430 Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '4c4778
123b7b11f750577199644f5d6820851dbb', |
| 431 |
| 428 # Display server protocol for Linux. | 432 # Display server protocol for Linux. |
| 429 'src/third_party/wayland/src': | 433 'src/third_party/wayland/src': |
| 430 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd.git' + '@' + '6a18a87727c64719c68168568b9ab1e4d7c2d9c1', | 434 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd.git' + '@' + '6a18a87727c64719c68168568b9ab1e4d7c2d9c1', |
| 431 | 435 |
| 432 # Wayland protocols that add functionality not available in the core protoco
l. | 436 # Wayland protocols that add functionality not available in the core protoco
l. |
| 433 'src/third_party/wayland-protocols/src': | 437 'src/third_party/wayland-protocols/src': |
| 434 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd-protocols.git' + '@' + '2e541a36deff5f2e16e25e27f7f93d26822eecc2', | 438 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd-protocols.git' + '@' + '2e541a36deff5f2e16e25e27f7f93d26822eecc2', |
| 435 | 439 |
| 436 # Wireless Display Software. Used on Chrome OS. | 440 # Wireless Display Software. Used on Chrome OS. |
| 437 'src/third_party/wds/src': | 441 'src/third_party/wds/src': |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1092 ] | 1096 ] |
| 1093 | 1097 |
| 1094 recursedeps = [ | 1098 recursedeps = [ |
| 1095 # buildtools provides clang_format, libc++, and libc++abi | 1099 # buildtools provides clang_format, libc++, and libc++abi |
| 1096 'src/buildtools', | 1100 'src/buildtools', |
| 1097 # android_tools manages the NDK. | 1101 # android_tools manages the NDK. |
| 1098 'src/third_party/android_tools', | 1102 'src/third_party/android_tools', |
| 1099 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1103 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1100 ("src/third_party/angle", "DEPS.chromium"), | 1104 ("src/third_party/angle", "DEPS.chromium"), |
| 1101 ] | 1105 ] |
| OLD | NEW |