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

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

Issue 2039483003: Add a libfuzzer for usrsctp, an SCTP userland stack. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates per code review Created 4 years, 6 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 sources = [ 127 sources = [
128 "url_parse_fuzzer.cc", 128 "url_parse_fuzzer.cc",
129 ] 129 ]
130 deps = [ 130 deps = [
131 "//base", 131 "//base",
132 "//base:i18n", 132 "//base:i18n",
133 "//url:url", 133 "//url:url",
134 ] 134 ]
135 } 135 }
136 136
137 fuzzer_test("usrsctp_fuzzer") {
138 sources = [
139 "usrsctp_fuzzer.cc",
140 ]
141 deps = [
142 "//third_party/usrsctp",
143 ]
144 }
145
137 fuzzer_test("base_json_reader_fuzzer") { 146 fuzzer_test("base_json_reader_fuzzer") {
138 sources = [ 147 sources = [
139 "base_json_reader_fuzzer.cc", 148 "base_json_reader_fuzzer.cc",
140 ] 149 ]
141 deps = [ 150 deps = [
142 "//base", 151 "//base",
143 ] 152 ]
144 } 153 }
145 154
146 fuzzer_test("gfx_png_image_fuzzer") { 155 fuzzer_test("gfx_png_image_fuzzer") {
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 sources = [ 301 sources = [
293 "flatbuffers_verifier_fuzzer.cc", 302 "flatbuffers_verifier_fuzzer.cc",
294 ] 303 ]
295 deps = [ 304 deps = [
296 "//third_party/flatbuffers", 305 "//third_party/flatbuffers",
297 "//third_party/flatbuffers:flatbuffers_samplebuffer", 306 "//third_party/flatbuffers:flatbuffers_samplebuffer",
298 ] 307 ]
299 libfuzzer_options = [ "max_len=1024" ] 308 libfuzzer_options = [ "max_len=1024" ]
300 seed_corpus = "//testing/libfuzzer/fuzzers/flatbuffers_corpus" 309 seed_corpus = "//testing/libfuzzer/fuzzers/flatbuffers_corpus"
301 } 310 }
OLDNEW
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/usrsctp_fuzzer.cc » ('j') | testing/libfuzzer/fuzzers/usrsctp_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698