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

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

Issue 2123553002: Add a fuzzer for srtp_unprotect in libsrtp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code review Created 4 years, 5 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 136
137 fuzzer_test("usrsctp_fuzzer") { 137 fuzzer_test("usrsctp_fuzzer") {
138 sources = [ 138 sources = [
139 "usrsctp_fuzzer.cc", 139 "usrsctp_fuzzer.cc",
140 ] 140 ]
141 deps = [ 141 deps = [
142 "//third_party/usrsctp", 142 "//third_party/usrsctp",
143 ] 143 ]
144 } 144 }
145 145
146 fuzzer_test("libsrtp_fuzzer") {
147 sources = [
148 "libsrtp_fuzzer.cc",
149 ]
150 deps = [
151 "//third_party/libsrtp",
152 ]
153 libfuzzer_options = [ "max_len=1000" ]
154 }
155
146 fuzzer_test("base_json_reader_fuzzer") { 156 fuzzer_test("base_json_reader_fuzzer") {
147 sources = [ 157 sources = [
148 "base_json_reader_fuzzer.cc", 158 "base_json_reader_fuzzer.cc",
149 ] 159 ]
150 deps = [ 160 deps = [
151 "//base", 161 "//base",
152 ] 162 ]
153 } 163 }
154 164
155 fuzzer_test("gfx_png_image_fuzzer") { 165 fuzzer_test("gfx_png_image_fuzzer") {
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 fuzzer_test("icu_break_iterator_utf32_fuzzer") { 326 fuzzer_test("icu_break_iterator_utf32_fuzzer") {
317 sources = [ 327 sources = [
318 "icu_break_iterator_utf32_fuzzer.cc", 328 "icu_break_iterator_utf32_fuzzer.cc",
319 ] 329 ]
320 deps = [ 330 deps = [
321 "//base", 331 "//base",
322 "//base:i18n", 332 "//base:i18n",
323 "//third_party/icu", 333 "//third_party/icu",
324 ] 334 ]
325 } 335 }
OLDNEW
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/libsrtp_fuzzer.cc » ('j') | testing/libfuzzer/fuzzers/libsrtp_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698