| 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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 'src/third_party/mockito/src': | 494 'src/third_party/mockito/src': |
| 495 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a
d4cf5ea53c69a8a8053780b04b850', | 495 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a
d4cf5ea53c69a8a8053780b04b850', |
| 496 | 496 |
| 497 'src/third_party/netty-tcnative/src': | 497 'src/third_party/netty-tcnative/src': |
| 498 Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '2e0f9503f3d4
efe6fc3f70077f22471e83ffb446', | 498 Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '2e0f9503f3d4
efe6fc3f70077f22471e83ffb446', |
| 499 | 499 |
| 500 'src/third_party/netty4/src': | 500 'src/third_party/netty4/src': |
| 501 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
19414d0ac81f2ef6ba3c', | 501 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
19414d0ac81f2ef6ba3c', |
| 502 | 502 |
| 503 'src/third_party/robolectric/robolectric': | 503 'src/third_party/robolectric/robolectric': |
| 504 Var('chromium_git') + '/external/robolectric.git' + '@' + 'e38b49a12fdfa17
a94f0382cc8ffaf69132fd09b', | 504 Var('chromium_git') + '/external/robolectric.git' + '@' + '5244ef6a3a6aada
84a7f4f270f253b760019c14c', |
| 505 | 505 |
| 506 'src/third_party/ub-uiautomator/lib': | 506 'src/third_party/ub-uiautomator/lib': |
| 507 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', | 507 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', |
| 508 | 508 |
| 509 'src/third_party/leakcanary/src': | 509 'src/third_party/leakcanary/src': |
| 510 Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
'608ded739e036a3aa69db47ac43777dcee506f8e', | 510 Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
'608ded739e036a3aa69db47ac43777dcee506f8e', |
| 511 | 511 |
| 512 'src/third_party/lss': | 512 'src/third_party/lss': |
| 513 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), | 513 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), |
| 514 | 514 |
| (...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 recursedeps = [ | 1146 recursedeps = [ |
| 1147 # buildtools provides clang_format, libc++, and libc++abi | 1147 # buildtools provides clang_format, libc++, and libc++abi |
| 1148 'src/buildtools', | 1148 'src/buildtools', |
| 1149 # android_tools manages the NDK. | 1149 # android_tools manages the NDK. |
| 1150 'src/third_party/android_tools', | 1150 'src/third_party/android_tools', |
| 1151 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1151 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1152 ("src/third_party/angle", "DEPS.chromium"), | 1152 ("src/third_party/angle", "DEPS.chromium"), |
| 1153 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1153 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
| 1154 ("src/third_party/swiftshader", "DEPS"), | 1154 ("src/third_party/swiftshader", "DEPS"), |
| 1155 ] | 1155 ] |
| OLD | NEW |