| 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 | 401 |
| 402 # Note that this is different from Android's freetype repo. | 402 # Note that this is different from Android's freetype repo. |
| 403 'src/third_party/freetype2/src': | 403 'src/third_party/freetype2/src': |
| 404 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'f
c1532a7c4c592f24a4c1a0261d2845524ca5cff', | 404 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'f
c1532a7c4c592f24a4c1a0261d2845524ca5cff', |
| 405 | 405 |
| 406 'src/third_party/freetype-android/src': | 406 'src/third_party/freetype-android/src': |
| 407 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Va
r('freetype_android_revision'), | 407 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Va
r('freetype_android_revision'), |
| 408 | 408 |
| 409 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. | 409 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 410 'src/third_party/chromite': | 410 'src/third_party/chromite': |
| 411 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'de4d8e3236c7b705
c4577f8162183990abb0b570', | 411 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '267bf6a6bbd07513
6ddde7f74c320c7acc073314', |
| 412 | 412 |
| 413 # Dependency of chromite.git and skia. | 413 # Dependency of chromite.git and skia. |
| 414 'src/third_party/pyelftools': | 414 'src/third_party/pyelftools': |
| 415 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19
b3e610c86fcadb837d252c794cb5e8008826ae', | 415 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19
b3e610c86fcadb837d252c794cb5e8008826ae', |
| 416 | 416 |
| 417 'src/third_party/liblouis/src': | 417 'src/third_party/liblouis/src': |
| 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': |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1104 ] | 1104 ] |
| 1105 | 1105 |
| 1106 recursedeps = [ | 1106 recursedeps = [ |
| 1107 # buildtools provides clang_format, libc++, and libc++abi | 1107 # buildtools provides clang_format, libc++, and libc++abi |
| 1108 'src/buildtools', | 1108 'src/buildtools', |
| 1109 # android_tools manages the NDK. | 1109 # android_tools manages the NDK. |
| 1110 'src/third_party/android_tools', | 1110 'src/third_party/android_tools', |
| 1111 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1111 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1112 ("src/third_party/angle", "DEPS.chromium"), | 1112 ("src/third_party/angle", "DEPS.chromium"), |
| 1113 ] | 1113 ] |
| OLD | NEW |