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