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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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. |
437 'src/third_party/wayland-protocols/src': | 437 'src/third_party/wayland-protocols/src': |
438 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd-protocols.git' + '@' + '2e541a36deff5f2e16e25e27f7f93d26822eecc2', | 438 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayla
nd-protocols.git' + '@' + '2e541a36deff5f2e16e25e27f7f93d26822eecc2', |
439 | 439 |
| 440 # The libevdev library (Chrome OS version). |
| 441 'src/third_party/libevdev/src': |
| 442 Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a196
1eb4726211e18abd147d5a11a4ea86744', |
| 443 |
| 444 # Chrome OS touchpad gestures library. |
| 445 'src/third_party/gestures/gestures': |
| 446 Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '5a65684
9c7d2b0d0ddbe0ac6d300c1e2fada0bb4', |
| 447 |
440 # Wireless Display Software. Used on Chrome OS. | 448 # Wireless Display Software. Used on Chrome OS. |
441 'src/third_party/wds/src': | 449 'src/third_party/wds/src': |
442 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d9
5f3000bf5c8e16a79dbbbf22d554a5', | 450 Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d9
5f3000bf5c8e16a79dbbbf22d554a5', |
443 | 451 |
444 # gRPC, an RPC framework. For Blimp use only. | 452 # gRPC, an RPC framework. For Blimp use only. |
445 'src/third_party/grpc': | 453 'src/third_party/grpc': |
446 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + '5945dfa700
a0566be7ea6691cc8a86ecb4a53924', | 454 Var('chromium_git') + '/external/github.com/grpc/grpc' + '@' + '5945dfa700
a0566be7ea6691cc8a86ecb4a53924', |
447 | 455 |
448 # DevTools node modules. Used on Linux buildbots only. | 456 # DevTools node modules. Used on Linux buildbots only. |
449 'src/third_party/WebKit/Source/devtools/devtools-node-modules': | 457 'src/third_party/WebKit/Source/devtools/devtools-node-modules': |
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1096 ] | 1104 ] |
1097 | 1105 |
1098 recursedeps = [ | 1106 recursedeps = [ |
1099 # buildtools provides clang_format, libc++, and libc++abi | 1107 # buildtools provides clang_format, libc++, and libc++abi |
1100 'src/buildtools', | 1108 'src/buildtools', |
1101 # android_tools manages the NDK. | 1109 # android_tools manages the NDK. |
1102 'src/third_party/android_tools', | 1110 'src/third_party/android_tools', |
1103 # 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. |
1104 ("src/third_party/angle", "DEPS.chromium"), | 1112 ("src/third_party/angle", "DEPS.chromium"), |
1105 ] | 1113 ] |
OLD | NEW |