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 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 'action': [ 'python', | 853 'action': [ 'python', |
854 'src/third_party/depot_tools/download_from_google_storage.py', | 854 'src/third_party/depot_tools/download_from_google_storage.py', |
855 "--no_resume", | 855 "--no_resume", |
856 "--no_auth", | 856 "--no_auth", |
857 "-u", | 857 "-u", |
858 "--bucket", "v8-wasm-fuzzer", | 858 "--bucket", "v8-wasm-fuzzer", |
859 "-s", "src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1", | 859 "-s", "src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1", |
860 ], | 860 ], |
861 }, | 861 }, |
862 { | 862 { |
863 "name": "wasm_asmjs_fuzzer", | |
864 "pattern": ".", | |
865 'action': [ 'python', | |
866 'src/third_party/depot_tools/download_from_google_storage.py', | |
867 "--no_resume", | |
868 "--no_auth", | |
869 "-u", | |
870 "--bucket", "v8-wasm-asmjs-fuzzer", | |
871 "-s", "src/v8/test/fuzzer/wasm_asmjs_corpus.tar.gz.sha1", | |
872 ], | |
873 }, | |
874 { | |
875 'name': 'devtools_install_node', | 863 'name': 'devtools_install_node', |
876 'action': [ 'python', | 864 'action': [ 'python', |
877 'src/third_party/WebKit/Source/devtools/scripts/local_node/node.
py', | 865 'src/third_party/WebKit/Source/devtools/scripts/local_node/node.
py', |
878 '--running-as-hook', | 866 '--running-as-hook', |
879 '--version', | 867 '--version', |
880 ], | 868 ], |
881 }, | 869 }, |
882 | 870 |
883 # Pull down Node binaries for WebUI toolchain. | 871 # Pull down Node binaries for WebUI toolchain. |
884 { | 872 { |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1236 } | 1224 } |
1237 | 1225 |
1238 recursedeps = [ | 1226 recursedeps = [ |
1239 # buildtools provides clang_format, libc++, and libc++abi | 1227 # buildtools provides clang_format, libc++, and libc++abi |
1240 'src/buildtools', | 1228 'src/buildtools', |
1241 # android_tools manages the NDK. | 1229 # android_tools manages the NDK. |
1242 'src/third_party/android_tools', | 1230 'src/third_party/android_tools', |
1243 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1231 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1244 ("src/third_party/angle", "DEPS.chromium"), | 1232 ("src/third_party/angle", "DEPS.chromium"), |
1245 ] | 1233 ] |
OLD | NEW |