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

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

Issue 2788063002: Disable various unused libxml features: catalogs, DocBook, legacy APIs, etc. (Closed)
Patch Set: Remove files from build, remove regexp fuzzer. Created 3 years, 8 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 | testing/libfuzzer/fuzzers/libxml_xml_regexp_compile_fuzzer.cc » ('j') | 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 10
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 } 346 }
347 347
348 fuzzer_test("v8_wasm_types_section_fuzzer") { 348 fuzzer_test("v8_wasm_types_section_fuzzer") {
349 sources = [] 349 sources = []
350 deps = [ 350 deps = [
351 "//v8:wasm_types_section_fuzzer", 351 "//v8:wasm_types_section_fuzzer",
352 ] 352 ]
353 libfuzzer_options = [ "max_len=500" ] 353 libfuzzer_options = [ "max_len=500" ]
354 } 354 }
355 355
356 fuzzer_test("libxml_xml_regexp_compile_fuzzer") {
357 sources = [
358 "libxml_xml_regexp_compile_fuzzer.cc",
359 ]
360 deps = [
361 "//third_party/libxml",
362 ]
363 libfuzzer_options = [ "max_len=32" ]
364 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
365 }
366
367 fuzzer_test("convert_woff2ttf_fuzzer") { 356 fuzzer_test("convert_woff2ttf_fuzzer") {
368 sources = [ 357 sources = [
369 "convert_woff2ttf_fuzzer.cc", 358 "convert_woff2ttf_fuzzer.cc",
370 ] 359 ]
371 deps = [ 360 deps = [
372 "//third_party/woff2:woff2_dec", 361 "//third_party/woff2:woff2_dec",
373 ] 362 ]
374 seed_corpus = "//testing/libfuzzer/fuzzers/woff2_corpus" 363 seed_corpus = "//testing/libfuzzer/fuzzers/woff2_corpus"
375 libfuzzer_options = [ "max_len=803500" ] 364 libfuzzer_options = [ "max_len=803500" ]
376 } 365 }
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 } 438 }
450 439
451 fuzzer_test("hash_fuzzer") { 440 fuzzer_test("hash_fuzzer") {
452 sources = [ 441 sources = [
453 "hash_fuzzer.cc", 442 "hash_fuzzer.cc",
454 ] 443 ]
455 deps = [ 444 deps = [
456 "//base", 445 "//base",
457 ] 446 ]
458 } 447 }
OLDNEW
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/libxml_xml_regexp_compile_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698