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

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

Issue 2698653002: Use re2_fuzzer stored in re2 repository, remove old version. (Closed)
Patch Set: Created 3 years, 10 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/re2_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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 } 326 }
327 327
328 fuzzer_test("v8_wasm_types_section_fuzzer") { 328 fuzzer_test("v8_wasm_types_section_fuzzer") {
329 sources = [] 329 sources = []
330 deps = [ 330 deps = [
331 "//v8:wasm_types_section_fuzzer", 331 "//v8:wasm_types_section_fuzzer",
332 ] 332 ]
333 libfuzzer_options = [ "max_len=500" ] 333 libfuzzer_options = [ "max_len=500" ]
334 } 334 }
335 335
336 fuzzer_test("third_party_re2_fuzzer") {
337 sources = [
338 "re2_fuzzer.cc",
339 ]
340 deps = [
341 "//third_party/re2:re2",
342 ]
343 }
344
345 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { 336 fuzzer_test("libxml_xml_regexp_compile_fuzzer") {
346 sources = [ 337 sources = [
347 "libxml_xml_regexp_compile_fuzzer.cc", 338 "libxml_xml_regexp_compile_fuzzer.cc",
348 ] 339 ]
349 deps = [ 340 deps = [
350 "//third_party/libxml", 341 "//third_party/libxml",
351 ] 342 ]
352 libfuzzer_options = [ "max_len=32" ] 343 libfuzzer_options = [ "max_len=32" ]
353 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] 344 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
354 } 345 }
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 } 429 }
439 430
440 fuzzer_test("hash_fuzzer") { 431 fuzzer_test("hash_fuzzer") {
441 sources = [ 432 sources = [
442 "hash_fuzzer.cc", 433 "hash_fuzzer.cc",
443 ] 434 ]
444 deps = [ 435 deps = [
445 "//base", 436 "//base",
446 ] 437 ]
447 } 438 }
OLDNEW
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/re2_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698