| 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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 'name': 'guava', | 610 'name': 'guava', |
| 611 'pattern': '.', | 611 'pattern': '.', |
| 612 'action': ['python', | 612 'action': ['python', |
| 613 'src/build/android/update_deps/update_third_party_deps.py', | 613 'src/build/android/update_deps/update_third_party_deps.py', |
| 614 'download', | 614 'download', |
| 615 '-b', 'chromium-guava', | 615 '-b', 'chromium-guava', |
| 616 '-l', 'third_party/guava' | 616 '-l', 'third_party/guava' |
| 617 ], | 617 ], |
| 618 }, | 618 }, |
| 619 { | 619 { |
| 620 'name': 'android_support_test_runner', |
| 621 'pattern': '.', |
| 622 'action': ['python', |
| 623 'src/build/android/update_deps/update_third_party_deps.py', |
| 624 'download', |
| 625 '-b', 'chromium-android-support-test-runner', |
| 626 '-l', 'third_party/android_support_test_runner' |
| 627 ], |
| 628 }, |
| 629 { |
| 620 # Downloads the current stable linux sysroot to build/linux/ if needed. | 630 # Downloads the current stable linux sysroot to build/linux/ if needed. |
| 621 # This sysroot updates at about the same rate that the chrome build deps | 631 # This sysroot updates at about the same rate that the chrome build deps |
| 622 # change. This script is a no-op except for linux users who are doing | 632 # change. This script is a no-op except for linux users who are doing |
| 623 # official chrome builds or cross compiling. | 633 # official chrome builds or cross compiling. |
| 624 'name': 'sysroot', | 634 'name': 'sysroot', |
| 625 'pattern': '.', | 635 'pattern': '.', |
| 626 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', | 636 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 627 '--running-as-hook'], | 637 '--running-as-hook'], |
| 628 }, | 638 }, |
| 629 { | 639 { |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 877 { | 887 { |
| 878 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 888 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 879 'name': 'gyp', | 889 'name': 'gyp', |
| 880 'pattern': '.', | 890 'pattern': '.', |
| 881 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 891 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 882 }, | 892 }, |
| 883 ] | 893 ] |
| 884 | 894 |
| 885 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 895 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 886 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 896 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |