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

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

Issue 2117183005: Reland of https://codereview.webrtc.org/2044523002. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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
« 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("//build_overrides/webrtc.gni") 10 import("//build_overrides/webrtc.gni")
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 # flagged by gn check, so breaks when rolled into Chromium. 182 # flagged by gn check, so breaks when rolled into Chromium.
183 if (!build_with_chromium) { 183 if (!build_with_chromium) {
184 webrtc_fuzzer_test("turn_unwrap_fuzzer") { 184 webrtc_fuzzer_test("turn_unwrap_fuzzer") {
185 sources = [ 185 sources = [
186 "turn_unwrap_fuzzer.cc", 186 "turn_unwrap_fuzzer.cc",
187 ] 187 ]
188 deps = [ 188 deps = [
189 "../../media:media", 189 "../../media:media",
190 ] 190 ]
191 } 191 }
192
193 webrtc_fuzzer_test("sdp_parser_fuzzer") {
194 sources = [
195 "sdp_parser_fuzzer.cc",
196 ]
197 deps = [
198 "../../api:libjingle_peerconnection",
199 ]
200 seed_corpus = "corpora/sdp-corpus"
201 }
202
203 webrtc_fuzzer_test("stun_parser_fuzzer") {
204 sources = [
205 "stun_parser_fuzzer.cc",
206 ]
207 deps = [
208 "../../p2p:rtc_p2p",
209 ]
210 seed_corpus = "corpora/stun-corpus"
211 dict = "corpora/stun.tokens"
212 }
213
214 webrtc_fuzzer_test("stun_validator_fuzzer") {
215 sources = [
216 "stun_validator_fuzzer.cc",
217 ]
218 deps = [
219 "../../p2p:rtc_p2p",
220 ]
221 seed_corpus = "corpora/stun-corpus"
222 dict = "corpora/stun.tokens"
223 }
192 } 224 }
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