| 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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 'name': 'sdkextras', | 580 'name': 'sdkextras', |
| 581 'pattern': '.', | 581 'pattern': '.', |
| 582 # When adding a new sdk extras package to download, add the package | 582 # When adding a new sdk extras package to download, add the package |
| 583 # directory and zip file to .gitignore in third_party/android_tools. | 583 # directory and zip file to .gitignore in third_party/android_tools. |
| 584 'action': ['python', | 584 'action': ['python', |
| 585 'src/build/android/play_services/update.py', | 585 'src/build/android/play_services/update.py', |
| 586 'download' | 586 'download' |
| 587 ], | 587 ], |
| 588 }, | 588 }, |
| 589 { | 589 { |
| 590 'name': 'apache_velocity', |
| 591 'pattern': '.', |
| 592 'action': ['python', |
| 593 'src/build/android/update_deps/update_third_party_deps.py', |
| 594 'download', |
| 595 '-b', 'chromium-apache-velocity', |
| 596 '-l', 'third_party/apache_velocity' |
| 597 ], |
| 598 }, |
| 599 { |
| 590 # Downloads the current stable linux sysroot to build/linux/ if needed. | 600 # Downloads the current stable linux sysroot to build/linux/ if needed. |
| 591 # This sysroot updates at about the same rate that the chrome build deps | 601 # This sysroot updates at about the same rate that the chrome build deps |
| 592 # change. This script is a no-op except for linux users who are doing | 602 # change. This script is a no-op except for linux users who are doing |
| 593 # official chrome builds or cross compiling. | 603 # official chrome builds or cross compiling. |
| 594 'name': 'sysroot', | 604 'name': 'sysroot', |
| 595 'pattern': '.', | 605 'pattern': '.', |
| 596 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', | 606 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 597 '--running-as-hook'], | 607 '--running-as-hook'], |
| 598 }, | 608 }, |
| 599 { | 609 { |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 { | 857 { |
| 848 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 858 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 849 'name': 'gyp', | 859 'name': 'gyp', |
| 850 'pattern': '.', | 860 'pattern': '.', |
| 851 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 861 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 852 }, | 862 }, |
| 853 ] | 863 ] |
| 854 | 864 |
| 855 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 865 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 856 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 866 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |