| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 fuzzer_test("libxml_xml_read_memory_fuzzer") { | 176 fuzzer_test("libxml_xml_read_memory_fuzzer") { |
| 177 sources = [ | 177 sources = [ |
| 178 "libxml_xml_read_memory_fuzzer.cc", | 178 "libxml_xml_read_memory_fuzzer.cc", |
| 179 ] | 179 ] |
| 180 deps = [ | 180 deps = [ |
| 181 "//third_party/libxml:libxml", | 181 "//third_party/libxml:libxml", |
| 182 ] | 182 ] |
| 183 dict = "dicts/xml.dict" | 183 dict = "dicts/xml.dict" |
| 184 } | 184 } |
| 185 | 185 |
| 186 fuzzer_test("unicode_string_codepage_create_fuzzer") { | |
| 187 sources = [ | |
| 188 "unicode_string_codepage_create_fuzzer.cc", | |
| 189 ] | |
| 190 deps = [ | |
| 191 "//third_party/icu", | |
| 192 ] | |
| 193 } | |
| 194 | |
| 195 fuzzer_test("libpng_read_fuzzer") { | 186 fuzzer_test("libpng_read_fuzzer") { |
| 196 sources = [ | 187 sources = [ |
| 197 "libpng_read_fuzzer.cc", | 188 "libpng_read_fuzzer.cc", |
| 198 ] | 189 ] |
| 199 deps = [ | 190 deps = [ |
| 200 "//base", | 191 "//base", |
| 201 "//third_party/libpng", | 192 "//third_party/libpng", |
| 202 ] | 193 ] |
| 203 dict = "dicts/png.dict" | 194 dict = "dicts/png.dict" |
| 204 } | 195 } |
| 205 | 196 |
| 206 fuzzer_test("icu_uregex_open_fuzzer") { | |
| 207 sources = [ | |
| 208 "icu_uregex_open_fuzzer.cc", | |
| 209 ] | |
| 210 deps = [ | |
| 211 "//third_party/icu", | |
| 212 ] | |
| 213 dict = "dicts/icu_regex.dict" | |
| 214 libfuzzer_options = [ "max_len=128" ] | |
| 215 } | |
| 216 | |
| 217 fuzzer_test("v8_script_parser_fuzzer") { | 197 fuzzer_test("v8_script_parser_fuzzer") { |
| 218 sources = [] | 198 sources = [] |
| 219 deps = [ | 199 deps = [ |
| 220 "//v8:parser_fuzzer", | 200 "//v8:parser_fuzzer", |
| 221 ] | 201 ] |
| 222 dict = "dicts/js.dict" | 202 dict = "dicts/js.dict" |
| 223 seed_corpus = "//v8/test/mjsunit/regress/" | 203 seed_corpus = "//v8/test/mjsunit/regress/" |
| 224 } | 204 } |
| 225 | 205 |
| 226 fuzzer_test("v8_json_parser_fuzzer") { | 206 fuzzer_test("v8_json_parser_fuzzer") { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 sources = [ | 272 sources = [ |
| 293 "flatbuffers_verifier_fuzzer.cc", | 273 "flatbuffers_verifier_fuzzer.cc", |
| 294 ] | 274 ] |
| 295 deps = [ | 275 deps = [ |
| 296 "//third_party/flatbuffers", | 276 "//third_party/flatbuffers", |
| 297 "//third_party/flatbuffers:flatbuffers_samplebuffer", | 277 "//third_party/flatbuffers:flatbuffers_samplebuffer", |
| 298 ] | 278 ] |
| 299 libfuzzer_options = [ "max_len=1024" ] | 279 libfuzzer_options = [ "max_len=1024" ] |
| 300 seed_corpus = "//testing/libfuzzer/fuzzers/flatbuffers_corpus" | 280 seed_corpus = "//testing/libfuzzer/fuzzers/flatbuffers_corpus" |
| 301 } | 281 } |
| OLD | NEW |