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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
398 | 398 |
399 'src/third_party/liblouis/src': | 399 'src/third_party/liblouis/src': |
400 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a34
78561deb6ae4798175094be8a26c2', | 400 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a34
78561deb6ae4798175094be8a26c2', |
401 | 401 |
402 # Used for embedded builds. CrOS & Linux use the system version. | 402 # Used for embedded builds. CrOS & Linux use the system version. |
403 'src/third_party/fontconfig/src': | 403 'src/third_party/fontconfig/src': |
404 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1
b749f9823c51827a60aeb5c1', | 404 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1
b749f9823c51827a60aeb5c1', |
405 | 405 |
406 # Graphics buffer allocator for Chrome OS. | 406 # Graphics buffer allocator for Chrome OS. |
407 'src/third_party/minigbm/src': | 407 'src/third_party/minigbm/src': |
408 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'f9e7c4c8
e91fb354abf714c7a5c89b4990814ff3', | 408 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '3345977b
5e9ef13f97e2e858241297fc4bfc7401', |
409 | 409 |
410 # Display server protocol for Linux. | 410 # Display server protocol for Linux. |
411 'src/third_party/wayland/src': | 411 'src/third_party/wayland/src': |
412 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd.git' + '@' + '47163797f810373c81b6e13b7a8a245eb9877785', | 412 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd.git' + '@' + '47163797f810373c81b6e13b7a8a245eb9877785', |
413 | 413 |
414 # Wayland protocols that add functionality not available in the core protoco
l. | 414 # Wayland protocols that add functionality not available in the core protoco
l. |
415 'src/third_party/wayland-protocols/src': | 415 'src/third_party/wayland-protocols/src': |
416 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd-protocols.git' + '@' + '2e541a36deff5f2e16e25e27f7f93d26822eecc2', | 416 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd-protocols.git' + '@' + '2e541a36deff5f2e16e25e27f7f93d26822eecc2', |
417 | 417 |
418 # Wireless Display Software. Used on Chrome OS. | 418 # Wireless Display Software. Used on Chrome OS. |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1019 ] | 1019 ] |
1020 | 1020 |
1021 recursedeps = [ | 1021 recursedeps = [ |
1022 # buildtools provides clang_format, libc++, and libc++abi | 1022 # buildtools provides clang_format, libc++, and libc++abi |
1023 'src/buildtools', | 1023 'src/buildtools', |
1024 # android_tools manages the NDK. | 1024 # android_tools manages the NDK. |
1025 'src/third_party/android_tools', | 1025 'src/third_party/android_tools', |
1026 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1026 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1027 ("src/third_party/angle", "DEPS.chromium"), | 1027 ("src/third_party/angle", "DEPS.chromium"), |
1028 ] | 1028 ] |
OLD | NEW |