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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 ] | 262 ] |
263 dict = "dicts/js.dict" | 263 dict = "dicts/js.dict" |
264 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 264 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
265 } | 265 } |
266 | 266 |
267 fuzzer_test("v8_json_parser_fuzzer") { | 267 fuzzer_test("v8_json_parser_fuzzer") { |
268 sources = [] | 268 sources = [] |
269 deps = [ | 269 deps = [ |
270 "//v8:json_fuzzer", | 270 "//v8:json_fuzzer", |
271 ] | 271 ] |
| 272 dict = "dicts/json.dict" |
272 } | 273 } |
273 | 274 |
274 fuzzer_test("v8_regexp_parser_fuzzer") { | 275 fuzzer_test("v8_regexp_parser_fuzzer") { |
275 sources = [] | 276 sources = [] |
276 deps = [ | 277 deps = [ |
277 "//v8:regexp_fuzzer", | 278 "//v8:regexp_fuzzer", |
278 ] | 279 ] |
279 dict = "dicts/regexp.dict" | 280 dict = "dicts/regexp.dict" |
280 } | 281 } |
281 | 282 |
(...skipping 26 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 |