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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 | 455 |
456 'src/third_party/mockito/src': | 456 'src/third_party/mockito/src': |
457 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '4d987dcd923
b81525c42b1333e6c4e07440776c3', | 457 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '4d987dcd923
b81525c42b1333e6c4e07440776c3', |
458 | 458 |
459 'src/third_party/netty-tcnative/src': | 459 'src/third_party/netty-tcnative/src': |
460 Var('chromium_git') + '/external/netty-tcnative.git' + '@' + 'dba665739988
01a08ea41b605b1629857ae02a6b', | 460 Var('chromium_git') + '/external/netty-tcnative.git' + '@' + 'dba665739988
01a08ea41b605b1629857ae02a6b', |
461 | 461 |
462 'src/third_party/netty4/src': | 462 'src/third_party/netty4/src': |
463 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
19414d0ac81f2ef6ba3c', | 463 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
19414d0ac81f2ef6ba3c', |
464 | 464 |
465 'src/third_party/robolectric/lib': | 465 'src/third_party/robolectric/robolectric': |
466 Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b6
3c99a8b6967acdb42cbed0adb067c80efc810', | 466 Var('chromium_git') + '/external/robolectric.git' + '@' + 'fdf24a09a4550b9
fe47028fb1e24f9f119573bd7', |
467 | 467 |
468 'src/third_party/ub-uiautomator/lib': | 468 'src/third_party/ub-uiautomator/lib': |
469 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', | 469 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', |
470 | 470 |
471 'src/third_party/leakcanary/src': | 471 'src/third_party/leakcanary/src': |
472 Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
'608ded739e036a3aa69db47ac43777dcee506f8e', | 472 Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
'608ded739e036a3aa69db47ac43777dcee506f8e', |
473 | 473 |
474 'src/third_party/lss': | 474 'src/third_party/lss': |
475 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 475 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
476 | 476 |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
627 'name': 'espresso', | 627 'name': 'espresso', |
628 'pattern': '.', | 628 'pattern': '.', |
629 'action': ['python', | 629 'action': ['python', |
630 'src/build/android/update_deps/update_third_party_deps.py', | 630 'src/build/android/update_deps/update_third_party_deps.py', |
631 'download', | 631 'download', |
632 '-b', 'chromium-espresso', | 632 '-b', 'chromium-espresso', |
633 '-l', 'third_party/espresso' | 633 '-l', 'third_party/espresso' |
634 ], | 634 ], |
635 }, | 635 }, |
636 { | 636 { |
| 637 'name': 'robolectric_libs', |
| 638 'pattern': '.', |
| 639 'action': ['python', |
| 640 'src/build/android/update_deps/update_third_party_deps.py', |
| 641 'download', |
| 642 '-b', 'chromium-robolectric', |
| 643 '-l', 'third_party/robolectric' |
| 644 ], |
| 645 }, |
| 646 { |
637 'name': 'apache_velocity', | 647 'name': 'apache_velocity', |
638 'pattern': '.', | 648 'pattern': '.', |
639 'action': ['python', | 649 'action': ['python', |
640 'src/build/android/update_deps/update_third_party_deps.py', | 650 'src/build/android/update_deps/update_third_party_deps.py', |
641 'download', | 651 'download', |
642 '-b', 'chromium-apache-velocity', | 652 '-b', 'chromium-apache-velocity', |
643 '-l', 'third_party/apache_velocity' | 653 '-l', 'third_party/apache_velocity' |
644 ], | 654 ], |
645 }, | 655 }, |
646 { | 656 { |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
954 { | 964 { |
955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 965 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
956 'name': 'gyp', | 966 'name': 'gyp', |
957 'pattern': '.', | 967 'pattern': '.', |
958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 968 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
959 }, | 969 }, |
960 ] | 970 ] |
961 | 971 |
962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 972 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 973 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
OLD | NEW |