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

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

Issue 2391393005: Remove openssl_bio_string. (Closed)
Patch Set: Created 4 years, 2 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
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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 libfuzzer_options = [ "max_len=1024" ] 412 libfuzzer_options = [ "max_len=1024" ]
413 } 413 }
414 414
415 fuzzer_test("angle_translator_fuzzer") { 415 fuzzer_test("angle_translator_fuzzer") {
416 sources = [] 416 sources = []
417 deps = [ 417 deps = [
418 "//third_party/angle:translator_fuzzer", 418 "//third_party/angle:translator_fuzzer",
419 ] 419 ]
420 libfuzzer_options = [ "max_len=1000" ] 420 libfuzzer_options = [ "max_len=1000" ]
421 } 421 }
422
423 fuzzer_test("openssl_bio_string_fuzzer") {
424 sources = [
425 "openssl_bio_string_fuzzer.cc",
426 ]
427 deps = [
428 "//crypto",
429 "//third_party/boringssl",
430 ]
431 libfuzzer_options = [ "max_len=512" ]
432 }
OLDNEW
« no previous file with comments | « crypto/openssl_bio_string_unittest.cc ('k') | testing/libfuzzer/fuzzers/openssl_bio_string_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698