| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 fuzzer_test("convert_woff2ttf_fuzzer") { | 279 fuzzer_test("convert_woff2ttf_fuzzer") { |
| 280 sources = [ | 280 sources = [ |
| 281 "convert_woff2ttf_fuzzer.cc", | 281 "convert_woff2ttf_fuzzer.cc", |
| 282 ] | 282 ] |
| 283 deps = [ | 283 deps = [ |
| 284 "//third_party/woff2:woff2_dec", | 284 "//third_party/woff2:woff2_dec", |
| 285 ] | 285 ] |
| 286 seed_corpus = "//testing/libfuzzer/fuzzers/woff2_corpus" | 286 seed_corpus = "//testing/libfuzzer/fuzzers/woff2_corpus" |
| 287 libfuzzer_options = [ "max_len=803500" ] | 287 libfuzzer_options = [ "max_len=803500" ] |
| 288 } | 288 } |
| 289 |
| 290 fuzzer_test("flatbuffers_verifier_fuzzer") { |
| 291 sources = [ |
| 292 "flatbuffers_verifier_fuzzer.cc", |
| 293 ] |
| 294 deps = [ |
| 295 "//third_party/flatbuffers", |
| 296 "//third_party/flatbuffers:flatbuffers_samplebuffer", |
| 297 ] |
| 298 libfuzzer_options = [ "max_len=1024" ] |
| 299 seed_corpus = "//testing/libfuzzer/fuzzers/flatbuffers_corpus" |
| 300 } |
| OLD | NEW |