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

Side by Side Diff: testing/libfuzzer/fuzzers/BUILD.gn

Issue 1578413002: [libfuzzer] unittest-style main driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 4 years, 11 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Individual libfuzzer tests that didn't find their home yet. 5 # Individual libfuzzer tests that didn't find their home yet.
6 6
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//testing/libfuzzer/fuzzer_test.gni") 9 import("//testing/libfuzzer/fuzzer_test.gni")
10 10
11 # root BUILD depenends on this target. Needed for package discovery
12 group("fuzzers") {
13 }
14
11 fuzzer_test("empty_fuzzer") { 15 fuzzer_test("empty_fuzzer") {
12 sources = [ 16 sources = [
13 "empty_fuzzer.cc", 17 "empty_fuzzer.cc",
14 ] 18 ]
15 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] 19 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
16 } 20 }
17 21
18 fuzzer_test("brotli_fuzzer") { 22 fuzzer_test("brotli_fuzzer") {
19 sources = [ 23 sources = [
20 "brotli_fuzzer.cc", 24 "brotli_fuzzer.cc",
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 } 283 }
280 284
281 fuzzer_test("libexif_parser_fuzzer") { 285 fuzzer_test("libexif_parser_fuzzer") {
282 sources = [ 286 sources = [
283 "libexif_parser_fuzzer.cc", 287 "libexif_parser_fuzzer.cc",
284 ] 288 ]
285 deps = [ 289 deps = [
286 "//third_party/libexif:libexif_fuzzers", 290 "//third_party/libexif:libexif_fuzzers",
287 ] 291 ]
288 } 292 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698