| 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 import("//third_party/pdfium/pdfium.gni") | 10 import("//third_party/pdfium/pdfium.gni") |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 "//v8:json_fuzzer", | 270 "//v8:json_fuzzer", |
| 271 ] | 271 ] |
| 272 } | 272 } |
| 273 | 273 |
| 274 fuzzer_test("v8_regexp_parser_fuzzer") { | 274 fuzzer_test("v8_regexp_parser_fuzzer") { |
| 275 sources = [] | 275 sources = [] |
| 276 deps = [ | 276 deps = [ |
| 277 "//v8:regexp_fuzzer", | 277 "//v8:regexp_fuzzer", |
| 278 ] | 278 ] |
| 279 dict = "dicts/regexp.dict" | 279 dict = "dicts/regexp.dict" |
| 280 libfuzzer_options = "v8_regexp_parser_fuzzer.options" |
| 280 } | 281 } |
| 281 | 282 |
| 282 fuzzer_test("v8_wasm_fuzzer") { | 283 fuzzer_test("v8_wasm_fuzzer") { |
| 283 sources = [] | 284 sources = [] |
| 284 deps = [ | 285 deps = [ |
| 285 "//v8:wasm_fuzzer", | 286 "//v8:wasm_fuzzer", |
| 286 ] | 287 ] |
| 287 dict = "dicts/v8_wasm.dict" | 288 dict = "dicts/v8_wasm.dict" |
| 288 libfuzzer_options = "v8_wasm_fuzzer.options" | 289 libfuzzer_options = "v8_wasm_fuzzer.options" |
| 289 } | 290 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 308 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { | 309 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { |
| 309 sources = [ | 310 sources = [ |
| 310 "libxml_xml_regexp_compile_fuzzer.cc", | 311 "libxml_xml_regexp_compile_fuzzer.cc", |
| 311 ] | 312 ] |
| 312 deps = [ | 313 deps = [ |
| 313 "//third_party/libxml", | 314 "//third_party/libxml", |
| 314 ] | 315 ] |
| 315 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" | 316 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" |
| 316 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 317 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
| 317 } | 318 } |
| OLD | NEW |