| 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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 'name': 'javax_inject', | 590 'name': 'javax_inject', |
| 591 'pattern': '.', | 591 'pattern': '.', |
| 592 'action': ['python', | 592 'action': ['python', |
| 593 'src/build/android/update_deps/update_third_party_deps.py', | 593 'src/build/android/update_deps/update_third_party_deps.py', |
| 594 'download', | 594 'download', |
| 595 '-b', 'chromium-javax-inject', | 595 '-b', 'chromium-javax-inject', |
| 596 '-l', 'third_party/javax_inject' | 596 '-l', 'third_party/javax_inject' |
| 597 ], | 597 ], |
| 598 }, | 598 }, |
| 599 { | 599 { |
| 600 'name': 'guava', |
| 601 'pattern': '.', |
| 602 'action': ['python', |
| 603 'src/build/android/update_deps/update_third_party_deps.py', |
| 604 'download', |
| 605 '-b', 'chromium-guava', |
| 606 '-l', 'third_party/guava' |
| 607 ], |
| 608 }, |
| 609 { |
| 600 # Downloads the current stable linux sysroot to build/linux/ if needed. | 610 # Downloads the current stable linux sysroot to build/linux/ if needed. |
| 601 # This sysroot updates at about the same rate that the chrome build deps | 611 # This sysroot updates at about the same rate that the chrome build deps |
| 602 # change. This script is a no-op except for linux users who are doing | 612 # change. This script is a no-op except for linux users who are doing |
| 603 # official chrome builds or cross compiling. | 613 # official chrome builds or cross compiling. |
| 604 'name': 'sysroot', | 614 'name': 'sysroot', |
| 605 'pattern': '.', | 615 'pattern': '.', |
| 606 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', | 616 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 607 '--running-as-hook'], | 617 '--running-as-hook'], |
| 608 }, | 618 }, |
| 609 { | 619 { |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 { | 867 { |
| 858 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 868 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 859 'name': 'gyp', | 869 'name': 'gyp', |
| 860 'pattern': '.', | 870 'pattern': '.', |
| 861 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 871 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 862 }, | 872 }, |
| 863 ] | 873 ] |
| 864 | 874 |
| 865 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 875 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 866 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 876 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |