Chromium Code Reviews| 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 983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 994 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa d_binaries.py'], | 994 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa d_binaries.py'], |
| 995 }, | 995 }, |
| 996 { | 996 { |
| 997 # Pull doclava binaries if building for Android. | 997 # Pull doclava binaries if building for Android. |
| 998 'name': 'doclava', | 998 'name': 'doclava', |
| 999 'pattern': '.', | 999 'pattern': '.', |
| 1000 'action': ['python', | 1000 'action': ['python', |
| 1001 'src/build/android/download_doclava.py', | 1001 'src/build/android/download_doclava.py', |
| 1002 ], | 1002 ], |
| 1003 }, | 1003 }, |
| 1004 { | |
| 1005 "name": "wasm_fuzzer", | |
|
Nico
2016/09/09 20:43:10
Do we really need to pull this on every single che
Nico
2016/09/15 19:40:39
^ Ping?
ahaas
2016/09/16 08:02:56
These files are the seed corpus of the v8-wasm-fuz
bradn
2016/09/16 22:37:55
kcc, mmoroz, does this need to actually be in chro
mmoroz
2016/09/17 17:35:26
We have an alternative way to provide the corpus (
| |
| 1006 "pattern": ".", | |
| 1007 "action": [ "download_from_google_storage", | |
| 1008 "--no_resume", | |
| 1009 "--no_auth", | |
| 1010 "-u", | |
| 1011 "--bucket", "v8-wasm-fuzzer", | |
| 1012 "-s", "src/v8/test/fuzzer/wasm.tar.gz.sha1", | |
| 1013 ], | |
| 1014 }, | |
| 1015 { | |
| 1016 "name": "wasm_asmjs_fuzzer", | |
| 1017 "pattern": ".", | |
| 1018 "action": [ "download_from_google_storage", | |
| 1019 "--no_resume", | |
| 1020 "--no_auth", | |
| 1021 "-u", | |
| 1022 "--bucket", "v8-wasm-asmjs-fuzzer", | |
| 1023 "-s", "src/v8/test/fuzzer/wasm_asmjs.tar.gz.sha1", | |
| 1024 ], | |
| 1025 }, | |
| 1004 ] | 1026 ] |
| 1005 | 1027 |
| 1006 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1028 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1007 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 1029 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |