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