| OLD | NEW |
| 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 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 sources = [ | 127 sources = [ |
| 128 "url_parse_fuzzer.cc", | 128 "url_parse_fuzzer.cc", |
| 129 ] | 129 ] |
| 130 deps = [ | 130 deps = [ |
| 131 "//base", | 131 "//base", |
| 132 "//base:i18n", | 132 "//base:i18n", |
| 133 "//url:url", | 133 "//url:url", |
| 134 ] | 134 ] |
| 135 } | 135 } |
| 136 | 136 |
| 137 fuzzer_test("usrsctp_fuzzer") { |
| 138 sources = [ |
| 139 "usrsctp_fuzzer.cc", |
| 140 ] |
| 141 deps = [ |
| 142 "//third_party/usrsctp", |
| 143 ] |
| 144 } |
| 145 |
| 137 fuzzer_test("base_json_reader_fuzzer") { | 146 fuzzer_test("base_json_reader_fuzzer") { |
| 138 sources = [ | 147 sources = [ |
| 139 "base_json_reader_fuzzer.cc", | 148 "base_json_reader_fuzzer.cc", |
| 140 ] | 149 ] |
| 141 deps = [ | 150 deps = [ |
| 142 "//base", | 151 "//base", |
| 143 ] | 152 ] |
| 144 } | 153 } |
| 145 | 154 |
| 146 fuzzer_test("gfx_png_image_fuzzer") { | 155 fuzzer_test("gfx_png_image_fuzzer") { |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 sources = [ | 301 sources = [ |
| 293 "flatbuffers_verifier_fuzzer.cc", | 302 "flatbuffers_verifier_fuzzer.cc", |
| 294 ] | 303 ] |
| 295 deps = [ | 304 deps = [ |
| 296 "//third_party/flatbuffers", | 305 "//third_party/flatbuffers", |
| 297 "//third_party/flatbuffers:flatbuffers_samplebuffer", | 306 "//third_party/flatbuffers:flatbuffers_samplebuffer", |
| 298 ] | 307 ] |
| 299 libfuzzer_options = [ "max_len=1024" ] | 308 libfuzzer_options = [ "max_len=1024" ] |
| 300 seed_corpus = "//testing/libfuzzer/fuzzers/flatbuffers_corpus" | 309 seed_corpus = "//testing/libfuzzer/fuzzers/flatbuffers_corpus" |
| 301 } | 310 } |
| OLD | NEW |