| 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 | 384 |
| 385 # Note that this is different from Android's freetype repo. | 385 # Note that this is different from Android's freetype repo. |
| 386 'src/third_party/freetype2/src': | 386 'src/third_party/freetype2/src': |
| 387 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', | 387 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', |
| 388 | 388 |
| 389 'src/third_party/freetype-android/src': | 389 'src/third_party/freetype-android/src': |
| 390 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), | 390 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), |
| 391 | 391 |
| 392 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. | 392 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 393 'src/third_party/chromite': | 393 'src/third_party/chromite': |
| 394 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '7381c2dc32165daee
391e927c976bcf819831ec3', | 394 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '697e77eade8bf2165
e6757b81d571a1b9ef93e1f', |
| 395 | 395 |
| 396 # Dependency of chromite.git and skia. | 396 # Dependency of chromite.git and skia. |
| 397 'src/third_party/pyelftools': | 397 'src/third_party/pyelftools': |
| 398 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', | 398 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', |
| 399 | 399 |
| 400 'src/third_party/liblouis/src': | 400 'src/third_party/liblouis/src': |
| 401 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', | 401 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', |
| 402 | 402 |
| 403 # Used for embedded builds. CrOS & Linux use the system version. | 403 # Used for embedded builds. CrOS & Linux use the system version. |
| 404 'src/third_party/fontconfig/src': | 404 'src/third_party/fontconfig/src': |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1022 ], | 1022 ], |
| 1023 }, | 1023 }, |
| 1024 ] | 1024 ] |
| 1025 | 1025 |
| 1026 recursedeps = [ | 1026 recursedeps = [ |
| 1027 # android_tools manages the NDK. | 1027 # android_tools manages the NDK. |
| 1028 'src/third_party/android_tools', | 1028 'src/third_party/android_tools', |
| 1029 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1029 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1030 ("src/third_party/angle", "DEPS.chromium"), | 1030 ("src/third_party/angle", "DEPS.chromium"), |
| 1031 ] | 1031 ] |
| OLD | NEW |