| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 dict = "dicts/icu_regex.dict" | 254 dict = "dicts/icu_regex.dict" |
| 255 libfuzzer_options = "icu_uregex_open_fuzzer.options" | 255 libfuzzer_options = "icu_uregex_open_fuzzer.options" |
| 256 } | 256 } |
| 257 | 257 |
| 258 fuzzer_test("v8_script_parser_fuzzer") { | 258 fuzzer_test("v8_script_parser_fuzzer") { |
| 259 sources = [] | 259 sources = [] |
| 260 deps = [ | 260 deps = [ |
| 261 "//v8:parser_fuzzer", | 261 "//v8:parser_fuzzer", |
| 262 ] | 262 ] |
| 263 dict = "dicts/js.dict" | 263 dict = "dicts/js.dict" |
| 264 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | |
| 265 } | 264 } |
| 266 | 265 |
| 267 fuzzer_test("v8_json_parser_fuzzer") { | 266 fuzzer_test("v8_json_parser_fuzzer") { |
| 268 sources = [] | 267 sources = [] |
| 269 deps = [ | 268 deps = [ |
| 270 "//v8:json_fuzzer", | 269 "//v8:json_fuzzer", |
| 271 ] | 270 ] |
| 272 } | 271 } |
| 273 | 272 |
| 274 fuzzer_test("v8_regexp_parser_fuzzer") { | 273 fuzzer_test("v8_regexp_parser_fuzzer") { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { | 307 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { |
| 309 sources = [ | 308 sources = [ |
| 310 "libxml_xml_regexp_compile_fuzzer.cc", | 309 "libxml_xml_regexp_compile_fuzzer.cc", |
| 311 ] | 310 ] |
| 312 deps = [ | 311 deps = [ |
| 313 "//third_party/libxml", | 312 "//third_party/libxml", |
| 314 ] | 313 ] |
| 315 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" | 314 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" |
| 316 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 315 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
| 317 } | 316 } |
| OLD | NEW |