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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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': |
422 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1
b749f9823c51827a60aeb5c1', | 422 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1
b749f9823c51827a60aeb5c1', |
423 | 423 |
424 # Graphics buffer allocator for Chrome OS. | 424 # Graphics buffer allocator for Chrome OS. |
425 'src/third_party/minigbm/src': | 425 'src/third_party/minigbm/src': |
426 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '71db2b55
1d3b189b0266052446aee35152a2eae3', | 426 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '682d73bd
00595a493bd446c5274bef08bd17c096', |
427 | 427 |
428 # Userspace interface to kernel DRM services. | 428 # Userspace interface to kernel DRM services. |
429 'src/third_party/libdrm/src': | 429 'src/third_party/libdrm/src': |
430 Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '0ce18b
edd3e62d4784fa755403801934ba171084', | 430 Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '0ce18b
edd3e62d4784fa755403801934ba171084', |
431 | 431 |
432 # Display server protocol for Linux. | 432 # Display server protocol for Linux. |
433 'src/third_party/wayland/src': | 433 'src/third_party/wayland/src': |
434 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd.git' + '@' + '6a18a87727c64719c68168568b9ab1e4d7c2d9c1', | 434 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd.git' + '@' + '6a18a87727c64719c68168568b9ab1e4d7c2d9c1', |
435 | 435 |
436 # Wayland protocols that add functionality not available in the core protoco
l. | 436 # Wayland protocols that add functionality not available in the core protoco
l. |
(...skipping 667 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 |