| 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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 | 385 |
| 386 # Note that this is different from Android's freetype repo. | 386 # Note that this is different from Android's freetype repo. |
| 387 'src/third_party/freetype2/src': | 387 'src/third_party/freetype2/src': |
| 388 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'f
c1532a7c4c592f24a4c1a0261d2845524ca5cff', | 388 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'f
c1532a7c4c592f24a4c1a0261d2845524ca5cff', |
| 389 | 389 |
| 390 'src/third_party/freetype-android/src': | 390 'src/third_party/freetype-android/src': |
| 391 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Va
r('freetype_android_revision'), | 391 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Va
r('freetype_android_revision'), |
| 392 | 392 |
| 393 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. | 393 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 394 'src/third_party/chromite': | 394 'src/third_party/chromite': |
| 395 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'b5e9339ae484d2a2
817384de4201984d05b5e9b1', | 395 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '0ab5a1cdaf3943aa
a429ae74107aff1256c8899d', |
| 396 | 396 |
| 397 # Dependency of chromite.git and skia. | 397 # Dependency of chromite.git and skia. |
| 398 'src/third_party/pyelftools': | 398 'src/third_party/pyelftools': |
| 399 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19
b3e610c86fcadb837d252c794cb5e8008826ae', | 399 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19
b3e610c86fcadb837d252c794cb5e8008826ae', |
| 400 | 400 |
| 401 'src/third_party/liblouis/src': | 401 'src/third_party/liblouis/src': |
| 402 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a34
78561deb6ae4798175094be8a26c2', | 402 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a34
78561deb6ae4798175094be8a26c2', |
| 403 | 403 |
| 404 # Used for embedded builds. CrOS & Linux use the system version. | 404 # Used for embedded builds. CrOS & Linux use the system version. |
| 405 'src/third_party/fontconfig/src': | 405 'src/third_party/fontconfig/src': |
| (...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1054 ] | 1054 ] |
| 1055 | 1055 |
| 1056 recursedeps = [ | 1056 recursedeps = [ |
| 1057 # buildtools provides clang_format, libc++, and libc++abi | 1057 # buildtools provides clang_format, libc++, and libc++abi |
| 1058 'src/buildtools', | 1058 'src/buildtools', |
| 1059 # android_tools manages the NDK. | 1059 # android_tools manages the NDK. |
| 1060 'src/third_party/android_tools', | 1060 'src/third_party/android_tools', |
| 1061 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1061 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1062 ("src/third_party/angle", "DEPS.chromium"), | 1062 ("src/third_party/angle", "DEPS.chromium"), |
| 1063 ] | 1063 ] |
| OLD | NEW |