| 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("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
| 9 | 9 |
| 10 fuzzer_test("empty_fuzzer") { | 10 fuzzer_test("empty_fuzzer") { |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 } | 248 } |
| 249 | 249 |
| 250 fuzzer_test("sqlite3_prepare_v2_fuzzer") { | 250 fuzzer_test("sqlite3_prepare_v2_fuzzer") { |
| 251 sources = [ | 251 sources = [ |
| 252 "sqlite3_prepare_v2_fuzzer.cc", | 252 "sqlite3_prepare_v2_fuzzer.cc", |
| 253 ] | 253 ] |
| 254 deps = [ | 254 deps = [ |
| 255 "//third_party/sqlite", | 255 "//third_party/sqlite", |
| 256 ] | 256 ] |
| 257 } | 257 } |
| 258 |
| 259 fuzzer_test("libxml_xml_read_memory_fuzzer") { |
| 260 sources = [ |
| 261 "libxml_xml_read_memory_fuzzer.cc", |
| 262 ] |
| 263 deps = [ |
| 264 "//third_party/libxml:libxml", |
| 265 ] |
| 266 } |
| OLD | NEW |