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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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' + '@' + '4d987dcd923
b81525c42b1333e6c4e07440776c3', |
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' + '@' + 'fdf24a09a4550b9
fe47028fb1e24f9f119573bd7', | 469 Var('chromium_git') + '/external/robolectric.git' + '@' + 'e38b49a12fdfa17
a94f0382cc8ffaf69132fd09b', |
470 | 470 |
471 'src/third_party/ub-uiautomator/lib': | 471 'src/third_party/ub-uiautomator/lib': |
472 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', | 472 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', |
473 | 473 |
474 'src/third_party/leakcanary/src': | 474 'src/third_party/leakcanary/src': |
475 Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
'608ded739e036a3aa69db47ac43777dcee506f8e', | 475 Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
'608ded739e036a3aa69db47ac43777dcee506f8e', |
476 | 476 |
477 'src/third_party/lss': | 477 'src/third_party/lss': |
478 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), | 478 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), |
479 | 479 |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
967 { | 967 { |
968 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 968 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
969 'name': 'gyp', | 969 'name': 'gyp', |
970 'pattern': '.', | 970 'pattern': '.', |
971 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 971 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
972 }, | 972 }, |
973 ] | 973 ] |
974 | 974 |
975 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 975 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
976 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 976 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
OLD | NEW |