| 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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 'src/third_party/httpcomponents-client': | 447 'src/third_party/httpcomponents-client': |
| 448 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', | 448 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', |
| 449 | 449 |
| 450 'src/third_party/httpcomponents-core': | 450 'src/third_party/httpcomponents-core': |
| 451 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', | 451 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', |
| 452 | 452 |
| 453 'src/third_party/jsr-305/src': | 453 'src/third_party/jsr-305/src': |
| 454 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a
f6d5df2d3210e3bfc0919', | 454 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a
f6d5df2d3210e3bfc0919', |
| 455 | 455 |
| 456 'src/third_party/junit/src': | 456 'src/third_party/junit/src': |
| 457 Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1
346b750c3209019f2e1', | 457 Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263c
f4d08253a1556e75481', |
| 458 | 458 |
| 459 'src/third_party/mockito/src': | 459 'src/third_party/mockito/src': |
| 460 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '4d987dcd923
b81525c42b1333e6c4e07440776c3', | 460 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a
d4cf5ea53c69a8a8053780b04b850', |
| 461 | 461 |
| 462 'src/third_party/netty-tcnative/src': | 462 'src/third_party/netty-tcnative/src': |
| 463 Var('chromium_git') + '/external/netty-tcnative.git' + '@' + 'dba665739988
01a08ea41b605b1629857ae02a6b', | 463 Var('chromium_git') + '/external/netty-tcnative.git' + '@' + 'dba665739988
01a08ea41b605b1629857ae02a6b', |
| 464 | 464 |
| 465 'src/third_party/netty4/src': | 465 'src/third_party/netty4/src': |
| 466 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
19414d0ac81f2ef6ba3c', | 466 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
19414d0ac81f2ef6ba3c', |
| 467 | 467 |
| 468 'src/third_party/robolectric/robolectric': | 468 'src/third_party/robolectric/robolectric': |
| 469 Var('chromium_git') + '/external/robolectric.git' + '@' + 'e38b49a12fdfa17
a94f0382cc8ffaf69132fd09b', | 469 Var('chromium_git') + '/external/robolectric.git' + '@' + 'e38b49a12fdfa17
a94f0382cc8ffaf69132fd09b', |
| 470 | 470 |
| (...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 973 'name': 'doclava', | 973 'name': 'doclava', |
| 974 'pattern': '.', | 974 'pattern': '.', |
| 975 'action': ['python', | 975 'action': ['python', |
| 976 'src/build/android/download_doclava.py', | 976 'src/build/android/download_doclava.py', |
| 977 ], | 977 ], |
| 978 }, | 978 }, |
| 979 ] | 979 ] |
| 980 | 980 |
| 981 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 981 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 982 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 982 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |