| 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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 'name': 'espresso', | 622 'name': 'espresso', |
| 623 'pattern': '.', | 623 'pattern': '.', |
| 624 'action': ['python', | 624 'action': ['python', |
| 625 'src/build/android/update_deps/update_third_party_deps.py', | 625 'src/build/android/update_deps/update_third_party_deps.py', |
| 626 'download', | 626 'download', |
| 627 '-b', 'chromium-espresso', | 627 '-b', 'chromium-espresso', |
| 628 '-l', 'third_party/espresso' | 628 '-l', 'third_party/espresso' |
| 629 ], | 629 ], |
| 630 }, | 630 }, |
| 631 { | 631 { |
| 632 'name': 'robolectric_android', |
| 633 'pattern': '.', |
| 634 'action': ['python', |
| 635 'src/build/android/update_deps/update_third_party_deps.py', |
| 636 'download', |
| 637 '-b', 'chromium-robolectric', |
| 638 '-l', 'third_party/robolectric' |
| 639 ], |
| 640 }, |
| 641 { |
| 632 # Downloads the current stable linux sysroot to build/linux/ if needed. | 642 # Downloads the current stable linux sysroot to build/linux/ if needed. |
| 633 # This sysroot updates at about the same rate that the chrome build deps | 643 # This sysroot updates at about the same rate that the chrome build deps |
| 634 # change. This script is a no-op except for linux users who are doing | 644 # change. This script is a no-op except for linux users who are doing |
| 635 # official chrome builds or cross compiling. | 645 # official chrome builds or cross compiling. |
| 636 'name': 'sysroot', | 646 'name': 'sysroot', |
| 637 'pattern': '.', | 647 'pattern': '.', |
| 638 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', | 648 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 639 '--running-as-hook'], | 649 '--running-as-hook'], |
| 640 }, | 650 }, |
| 641 { | 651 { |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 { | 899 { |
| 890 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 900 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 891 'name': 'gyp', | 901 'name': 'gyp', |
| 892 'pattern': '.', | 902 'pattern': '.', |
| 893 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 903 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 894 }, | 904 }, |
| 895 ] | 905 ] |
| 896 | 906 |
| 897 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 907 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 898 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 908 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |