| 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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 'unix': { | 402 'unix': { |
| 403 # Linux, really. | 403 # Linux, really. |
| 404 'src/third_party/xdg-utils': | 404 'src/third_party/xdg-utils': |
| 405 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b
17b8c9067a1022e4416ee7ed5e0d', | 405 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b
17b8c9067a1022e4416ee7ed5e0d', |
| 406 | 406 |
| 407 'src/third_party/lss': | 407 'src/third_party/lss': |
| 408 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), | 408 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), |
| 409 | 409 |
| 410 # For Linux and Chromium OS. | 410 # For Linux and Chromium OS. |
| 411 'src/third_party/cros_system_api': | 411 'src/third_party/cros_system_api': |
| 412 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '19115
ef1bc72e0068951d236cdc0c549346adfda', | 412 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'f425c
1c372b0077a67937855f03f1089d0df7970', |
| 413 | 413 |
| 414 'src/third_party/freetype/src': | 414 'src/third_party/freetype/src': |
| 415 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Va
r('freetype_revision'), | 415 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Va
r('freetype_revision'), |
| 416 | 416 |
| 417 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. | 417 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 418 'src/third_party/chromite': | 418 'src/third_party/chromite': |
| 419 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '19dc69036d1af1e6
ad00f1993f8c3a2b7a770e3e', | 419 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '19dc69036d1af1e6
ad00f1993f8c3a2b7a770e3e', |
| 420 | 420 |
| 421 # Dependency of chromite.git and skia. | 421 # Dependency of chromite.git and skia. |
| 422 'src/third_party/pyelftools': | 422 'src/third_party/pyelftools': |
| (...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1154 recursedeps = [ | 1154 recursedeps = [ |
| 1155 # buildtools provides clang_format, libc++, and libc++abi | 1155 # buildtools provides clang_format, libc++, and libc++abi |
| 1156 'src/buildtools', | 1156 'src/buildtools', |
| 1157 # android_tools manages the NDK. | 1157 # android_tools manages the NDK. |
| 1158 'src/third_party/android_tools', | 1158 'src/third_party/android_tools', |
| 1159 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1159 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1160 ("src/third_party/angle", "DEPS.chromium"), | 1160 ("src/third_party/angle", "DEPS.chromium"), |
| 1161 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1161 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
| 1162 ("src/third_party/swiftshader", "DEPS"), | 1162 ("src/third_party/swiftshader", "DEPS"), |
| 1163 ] | 1163 ] |
| OLD | NEW |