| 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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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' + '@' + 'b78cb
4884c80ae158efa81b1c65c489cfbc97959', | 412 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'b78cb
4884c80ae158efa81b1c65c489cfbc97959', |
| 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' + '@' + '07d4626c40a50186
6d7c01954f8cabef7b50f482', |
| 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': |
| 423 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19
b3e610c86fcadb837d252c794cb5e8008826ae', | 423 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19
b3e610c86fcadb837d252c794cb5e8008826ae', |
| 424 | 424 |
| 425 'src/third_party/liblouis/src': | 425 'src/third_party/liblouis/src': |
| 426 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a34
78561deb6ae4798175094be8a26c2', | 426 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a34
78561deb6ae4798175094be8a26c2', |
| 427 | 427 |
| 428 # Used for embedded builds. CrOS & Linux use the system version. | 428 # Used for embedded builds. CrOS & Linux use the system version. |
| 429 'src/third_party/fontconfig/src': | 429 'src/third_party/fontconfig/src': |
| (...skipping 724 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 |