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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 'src/third_party/httpcomponents-client': | 458 'src/third_party/httpcomponents-client': |
459 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', | 459 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', |
460 | 460 |
461 'src/third_party/httpcomponents-core': | 461 'src/third_party/httpcomponents-core': |
462 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', | 462 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', |
463 | 463 |
464 'src/third_party/jsr-305/src': | 464 'src/third_party/jsr-305/src': |
465 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a
f6d5df2d3210e3bfc0919', | 465 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a
f6d5df2d3210e3bfc0919', |
466 | 466 |
467 'src/third_party/junit/src': | 467 'src/third_party/junit/src': |
468 Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1
346b750c3209019f2e1', | 468 Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263c
f4d08253a1556e75481', |
469 | 469 |
470 'src/third_party/mockito/src': | 470 'src/third_party/mockito/src': |
471 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '4d987dcd923
b81525c42b1333e6c4e07440776c3', | 471 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a
d4cf5ea53c69a8a8053780b04b850', |
472 | 472 |
473 'src/third_party/netty-tcnative/src': | 473 'src/third_party/netty-tcnative/src': |
474 Var('chromium_git') + '/external/netty-tcnative.git' + '@' + 'dba665739988
01a08ea41b605b1629857ae02a6b', | 474 Var('chromium_git') + '/external/netty-tcnative.git' + '@' + 'dba665739988
01a08ea41b605b1629857ae02a6b', |
475 | 475 |
476 'src/third_party/netty4/src': | 476 'src/third_party/netty4/src': |
477 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
19414d0ac81f2ef6ba3c', | 477 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
19414d0ac81f2ef6ba3c', |
478 | 478 |
479 'src/third_party/robolectric/robolectric': | 479 'src/third_party/robolectric/robolectric': |
480 Var('chromium_git') + '/external/robolectric.git' + '@' + 'e38b49a12fdfa17
a94f0382cc8ffaf69132fd09b', | 480 Var('chromium_git') + '/external/robolectric.git' + '@' + 'e38b49a12fdfa17
a94f0382cc8ffaf69132fd09b', |
481 | 481 |
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1004 'name': 'doclava', | 1004 'name': 'doclava', |
1005 'pattern': '.', | 1005 'pattern': '.', |
1006 'action': ['python', | 1006 'action': ['python', |
1007 'src/build/android/download_doclava.py', | 1007 'src/build/android/download_doclava.py', |
1008 ], | 1008 ], |
1009 }, | 1009 }, |
1010 ] | 1010 ] |
1011 | 1011 |
1012 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1012 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1013 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 1013 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
OLD | NEW |