| 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 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1001 "name": "wasm_asmjs_fuzzer", | 1001 "name": "wasm_asmjs_fuzzer", |
| 1002 "pattern": ".", | 1002 "pattern": ".", |
| 1003 "action": [ "download_from_google_storage", | 1003 "action": [ "download_from_google_storage", |
| 1004 "--no_resume", | 1004 "--no_resume", |
| 1005 "--no_auth", | 1005 "--no_auth", |
| 1006 "-u", | 1006 "-u", |
| 1007 "--bucket", "v8-wasm-asmjs-fuzzer", | 1007 "--bucket", "v8-wasm-asmjs-fuzzer", |
| 1008 "-s", "src/v8/test/fuzzer/wasm_asmjs.tar.gz.sha1", | 1008 "-s", "src/v8/test/fuzzer/wasm_asmjs.tar.gz.sha1", |
| 1009 ], | 1009 ], |
| 1010 }, | 1010 }, |
| 1011 { |
| 1012 'name': 'clang_format_merge_driver', |
| 1013 'pattern': '.', |
| 1014 'action': [ 'python', |
| 1015 'src/tools/clang_format_merge_driver/install_git_hook.py', |
| 1016 ], |
| 1017 }, |
| 1011 ] | 1018 ] |
| 1012 | 1019 |
| 1013 recursedeps = [ | 1020 recursedeps = [ |
| 1014 # android_tools manages the NDK. | 1021 # android_tools manages the NDK. |
| 1015 'src/third_party/android_tools', | 1022 'src/third_party/android_tools', |
| 1016 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1023 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1017 ("src/third_party/angle", "DEPS.chromium"), | 1024 ("src/third_party/angle", "DEPS.chromium"), |
| 1018 ] | 1025 ] |
| OLD | NEW |