Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Side by Side Diff: testing/libfuzzer/fuzzers/BUILD.gn

Issue 1813743002: [libfuzzer] Enable v8_script_parser_fuzzer for ClusterFuzz. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698