| 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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 'name': 'sqlite4java', | 708 'name': 'sqlite4java', |
| 709 'pattern': '.', | 709 'pattern': '.', |
| 710 'action': ['python', | 710 'action': ['python', |
| 711 'src/build/android/update_deps/update_third_party_deps.py', | 711 'src/build/android/update_deps/update_third_party_deps.py', |
| 712 'download', | 712 'download', |
| 713 '-b', 'chromium-sqlite4java', | 713 '-b', 'chromium-sqlite4java', |
| 714 '-l', 'third_party/sqlite4java' | 714 '-l', 'third_party/sqlite4java' |
| 715 ], | 715 ], |
| 716 }, | 716 }, |
| 717 { | 717 { |
| 718 'name': 'objenesis', |
| 719 'pattern': '.', |
| 720 'action': ['python', |
| 721 'src/build/android/update_deps/update_third_party_deps.py', |
| 722 'download', |
| 723 '-b', 'chromium-objenesis', |
| 724 '-l', 'third_party/objenesis' |
| 725 ], |
| 726 }, |
| 727 { |
| 718 # Downloads the current stable linux sysroot to build/linux/ if needed. | 728 # Downloads the current stable linux sysroot to build/linux/ if needed. |
| 719 # This sysroot updates at about the same rate that the chrome build deps | 729 # This sysroot updates at about the same rate that the chrome build deps |
| 720 # change. This script is a no-op except for linux users who are doing | 730 # change. This script is a no-op except for linux users who are doing |
| 721 # official chrome builds or cross compiling. | 731 # official chrome builds or cross compiling. |
| 722 'name': 'sysroot', | 732 'name': 'sysroot', |
| 723 'pattern': '.', | 733 'pattern': '.', |
| 724 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', | 734 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 725 '--running-as-hook'], | 735 '--running-as-hook'], |
| 726 }, | 736 }, |
| 727 { | 737 { |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 978 'name': 'doclava', | 988 'name': 'doclava', |
| 979 'pattern': '.', | 989 'pattern': '.', |
| 980 'action': ['python', | 990 'action': ['python', |
| 981 'src/build/android/download_doclava.py', | 991 'src/build/android/download_doclava.py', |
| 982 ], | 992 ], |
| 983 }, | 993 }, |
| 984 ] | 994 ] |
| 985 | 995 |
| 986 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 996 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 987 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 997 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |