Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Unified Diff: testing/libfuzzer/fuzzer_test.gni

Issue 1885493002: [libfuzzer] Add custom max_len parameter for boringssl fuzzers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove depfile for dry run to test a possible fix. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: testing/libfuzzer/fuzzer_test.gni
diff --git a/testing/libfuzzer/fuzzer_test.gni b/testing/libfuzzer/fuzzer_test.gni
index 26d3ad6e326eca1e9f1834c11752e0de7d31b8ad..2439136599bbff10640e486aa709308e2490937f 100644
--- a/testing/libfuzzer/fuzzer_test.gni
+++ b/testing/libfuzzer/fuzzer_test.gni
@@ -37,14 +37,11 @@ template("fuzzer_test") {
}
if (defined(invoker.seed_corpus)) {
- depfile = "$root_build_dir/$target_name" + ".seed_corpus.d"
out = "$root_build_dir/$target_name" + "_seed_corpus.zip"
action(target_name + "_seed_corpus") {
script = "//testing/libfuzzer/archive_corpus.py"
args = [
- "--depfile",
- rebase_path(depfile),
"--corpus",
rebase_path(invoker.seed_corpus),
"--output",
@@ -53,7 +50,6 @@ template("fuzzer_test") {
rebase_path("$root_build_dir/$target_name"),
]
- depfile = depfile
outputs = [
out,
]

Powered by Google App Engine
This is Rietveld 408576698