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

Side by Side Diff: webrtc/test/fuzzers/BUILD.gn

Issue 2044523002: Add fuzzers for SDP and STUN parsing. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Updates as 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
« no previous file with comments | « no previous file | webrtc/test/fuzzers/sdp_parser_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 (c) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("webrtc_fuzzer.gni") 10 import("webrtc_fuzzer.gni")
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 77
78 webrtc_fuzzer_test("rtp_packet_fuzzer") { 78 webrtc_fuzzer_test("rtp_packet_fuzzer") {
79 sources = [ 79 sources = [
80 "rtp_packet_fuzzer.cc", 80 "rtp_packet_fuzzer.cc",
81 ] 81 ]
82 deps = [ 82 deps = [
83 "../../modules/rtp_rtcp/", 83 "../../modules/rtp_rtcp/",
84 ] 84 ]
85 } 85 }
86 86
87 webrtc_fuzzer_test("sdp_parser_fuzzer") {
88 sources = [
89 "sdp_parser_fuzzer.cc",
90 ]
91 deps = [
92 "//webrtc/api:libjingle_peerconnection",
93 ]
94 }
95
96 webrtc_fuzzer_test("stun_parser_fuzzer") {
97 sources = [
98 "stun_parser_fuzzer.cc",
99 ]
100 deps = [
101 "//webrtc/p2p:rtc_p2p",
102 ]
103 }
104
105 webrtc_fuzzer_test("stun_validator_fuzzer") {
106 sources = [
107 "stun_validator_fuzzer.cc",
108 ]
109 deps = [
110 "//webrtc/p2p:rtc_p2p",
111 ]
112 }
113
87 source_set("audio_decoder_fuzzer") { 114 source_set("audio_decoder_fuzzer") {
88 public_configs = [ "../..:common_inherited_config" ] 115 public_configs = [ "../..:common_inherited_config" ]
89 sources = [ 116 sources = [
90 "audio_decoder_fuzzer.cc", 117 "audio_decoder_fuzzer.cc",
91 "audio_decoder_fuzzer.h", 118 "audio_decoder_fuzzer.h",
92 ] 119 ]
93 } 120 }
94 121
95 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { 122 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") {
96 sources = [ 123 sources = [
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 171
145 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { 172 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") {
146 sources = [ 173 sources = [
147 "audio_decoder_opus_redundant_fuzzer.cc", 174 "audio_decoder_opus_redundant_fuzzer.cc",
148 ] 175 ]
149 deps = [ 176 deps = [
150 ":audio_decoder_fuzzer", 177 ":audio_decoder_fuzzer",
151 "../../modules/audio_coding:webrtc_opus", 178 "../../modules/audio_coding:webrtc_opus",
152 ] 179 ]
153 } 180 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/test/fuzzers/sdp_parser_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698