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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 'unix': { | 372 'unix': { |
373 # Linux, really. | 373 # Linux, really. |
374 'src/third_party/xdg-utils': | 374 'src/third_party/xdg-utils': |
375 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b
17b8c9067a1022e4416ee7ed5e0d', | 375 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b
17b8c9067a1022e4416ee7ed5e0d', |
376 | 376 |
377 'src/third_party/lss': | 377 'src/third_party/lss': |
378 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), | 378 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), |
379 | 379 |
380 # For Linux and Chromium OS. | 380 # For Linux and Chromium OS. |
381 'src/third_party/cros_system_api': | 381 'src/third_party/cros_system_api': |
382 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '6d765
3e36068a12f538512f80c4ce77ea2492b92', | 382 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '1b7b2
61e7757d49fd9035c12e17704e6fe956032', |
383 | 383 |
384 # Note that this is different from Android's freetype repo. | 384 # Note that this is different from Android's freetype repo. |
385 'src/third_party/freetype2/src': | 385 'src/third_party/freetype2/src': |
386 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'f
c1532a7c4c592f24a4c1a0261d2845524ca5cff', | 386 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'f
c1532a7c4c592f24a4c1a0261d2845524ca5cff', |
387 | 387 |
388 'src/third_party/freetype-android/src': | 388 'src/third_party/freetype-android/src': |
389 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Va
r('freetype_android_revision'), | 389 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Va
r('freetype_android_revision'), |
390 | 390 |
391 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. | 391 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
392 'src/third_party/chromite': | 392 'src/third_party/chromite': |
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1018 ] | 1018 ] |
1019 | 1019 |
1020 recursedeps = [ | 1020 recursedeps = [ |
1021 # buildtools provides clang_format, libc++, and libc++abi | 1021 # buildtools provides clang_format, libc++, and libc++abi |
1022 'src/buildtools', | 1022 'src/buildtools', |
1023 # android_tools manages the NDK. | 1023 # android_tools manages the NDK. |
1024 'src/third_party/android_tools', | 1024 'src/third_party/android_tools', |
1025 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1025 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1026 ("src/third_party/angle", "DEPS.chromium"), | 1026 ("src/third_party/angle", "DEPS.chromium"), |
1027 ] | 1027 ] |
OLD | NEW |