diff options
Diffstat (limited to 'chromium/third_party/openscreen/src/testing')
-rw-r--r-- | chromium/third_party/openscreen/src/testing/libfuzzer/fuzzer_test.gni | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/chromium/third_party/openscreen/src/testing/libfuzzer/fuzzer_test.gni b/chromium/third_party/openscreen/src/testing/libfuzzer/fuzzer_test.gni index 4de38ac46e7..cbd33178d30 100644 --- a/chromium/third_party/openscreen/src/testing/libfuzzer/fuzzer_test.gni +++ b/chromium/third_party/openscreen/src/testing/libfuzzer/fuzzer_test.gni @@ -75,9 +75,7 @@ template("openscreen_fuzzer_test") { } } - outputs = [ - out, - ] + outputs = [ out ] deps = [ "//testing/libfuzzer:seed_corpus" ] + seed_corpus_deps } @@ -92,12 +90,8 @@ template("openscreen_fuzzer_test") { if (defined(invoker.dict)) { # Copy dictionary to output. copy(target_name + "_dict_copy") { - sources = [ - invoker.dict, - ] - outputs = [ - "$root_build_dir/" + target_name + ".dict", - ] + sources = [ invoker.dict ] + outputs = [ "$root_build_dir/" + target_name + ".dict" ] } test_deps += [ ":" + target_name + "_dict_copy" ] } @@ -144,14 +138,13 @@ template("openscreen_fuzzer_test") { args += invoker.environment_variables } - outputs = [ - "$root_build_dir/$config_file_name", - ] + outputs = [ "$root_build_dir/$config_file_name" ] } test_deps += [ ":" + config_file_name ] } executable(target_name) { + testonly = true forward_variables_from(invoker, [ "cflags", |