| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 | 376 |
| 377 # Note that this is different from Android's freetype repo. | 377 # Note that this is different from Android's freetype repo. |
| 378 'src/third_party/freetype2/src': | 378 'src/third_party/freetype2/src': |
| 379 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', | 379 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc
1532a7c4c592f24a4c1a0261d2845524ca5cff', |
| 380 | 380 |
| 381 'src/third_party/freetype-android/src': | 381 'src/third_party/freetype-android/src': |
| 382 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), | 382 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), |
| 383 | 383 |
| 384 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. | 384 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 385 'src/third_party/chromite': | 385 'src/third_party/chromite': |
| 386 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'ef7e4378c78f032e6
746cf65c725f0a1c69d5824', | 386 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '762cbcd93409c51d0
8af25b7be0c1f7f5a8a2eec', |
| 387 | 387 |
| 388 # Dependency of chromite.git and skia. | 388 # Dependency of chromite.git and skia. |
| 389 'src/third_party/pyelftools': | 389 'src/third_party/pyelftools': |
| 390 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', | 390 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', |
| 391 | 391 |
| 392 'src/third_party/liblouis/src': | 392 'src/third_party/liblouis/src': |
| 393 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', | 393 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', |
| 394 | 394 |
| 395 # Used for embedded builds. CrOS & Linux use the system version. | 395 # Used for embedded builds. CrOS & Linux use the system version. |
| 396 'src/third_party/fontconfig/src': | 396 'src/third_party/fontconfig/src': |
| (...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 973 'name': 'doclava', | 973 'name': 'doclava', |
| 974 'pattern': '.', | 974 'pattern': '.', |
| 975 'action': ['python', | 975 'action': ['python', |
| 976 'src/build/android/download_doclava.py', | 976 'src/build/android/download_doclava.py', |
| 977 ], | 977 ], |
| 978 }, | 978 }, |
| 979 ] | 979 ] |
| 980 | 980 |
| 981 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 981 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 982 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 982 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |