| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 | 177 |
| 178 fuzzer_test("zlib_uncompress_fuzzer") { | 178 fuzzer_test("zlib_uncompress_fuzzer") { |
| 179 sources = [ | 179 sources = [ |
| 180 "zlib_uncompress_fuzzer.cc", | 180 "zlib_uncompress_fuzzer.cc", |
| 181 ] | 181 ] |
| 182 deps = [ | 182 deps = [ |
| 183 "//third_party/zlib", | 183 "//third_party/zlib", |
| 184 ] | 184 ] |
| 185 } | 185 } |
| 186 | 186 |
| 187 fuzzer_test("sqlite3_prepare_v2_fuzzer") { | |
| 188 sources = [ | |
| 189 "sqlite3_prepare_v2_fuzzer.cc", | |
| 190 ] | |
| 191 deps = [ | |
| 192 "//third_party/sqlite", | |
| 193 ] | |
| 194 dict = "dicts/generated/sqlite3_prepare_v2_fuzzer.dict" | |
| 195 } | |
| 196 | |
| 197 fuzzer_test("libxml_xml_read_memory_fuzzer") { | 187 fuzzer_test("libxml_xml_read_memory_fuzzer") { |
| 198 sources = [ | 188 sources = [ |
| 199 "libxml_xml_read_memory_fuzzer.cc", | 189 "libxml_xml_read_memory_fuzzer.cc", |
| 200 ] | 190 ] |
| 201 deps = [ | 191 deps = [ |
| 202 "//third_party/libxml:libxml", | 192 "//third_party/libxml:libxml", |
| 203 ] | 193 ] |
| 204 dict = "dicts/generated/libxml_xml_read_memory_fuzzer.dict" | 194 dict = "dicts/generated/libxml_xml_read_memory_fuzzer.dict" |
| 205 } | 195 } |
| 206 | 196 |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 } | 428 } |
| 439 | 429 |
| 440 fuzzer_test("hash_fuzzer") { | 430 fuzzer_test("hash_fuzzer") { |
| 441 sources = [ | 431 sources = [ |
| 442 "hash_fuzzer.cc", | 432 "hash_fuzzer.cc", |
| 443 ] | 433 ] |
| 444 deps = [ | 434 deps = [ |
| 445 "//base", | 435 "//base", |
| 446 ] | 436 ] |
| 447 } | 437 } |
| OLD | NEW |