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

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

Issue 2265493002: Fuzzer for FEC header readers. (pt. 6a) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@generalize_fec_header_parsing
Patch Set: Cleaned up a bit. Created 4 years, 3 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 (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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 webrtc_fuzzer_test("vp8_qp_parser_fuzzer") { 64 webrtc_fuzzer_test("vp8_qp_parser_fuzzer") {
65 sources = [ 65 sources = [
66 "vp8_qp_parser_fuzzer.cc", 66 "vp8_qp_parser_fuzzer.cc",
67 ] 67 ]
68 deps = [ 68 deps = [
69 "../../modules/video_coding/", 69 "../../modules/video_coding/",
70 ] 70 ]
71 } 71 }
72 72
73 webrtc_fuzzer_test("flexfec_header_reader_fuzzer") {
74 sources = [
75 "flexfec_header_reader_fuzzer.cc",
76 ]
77 deps = [
78 "../../modules/rtp_rtcp/",
79 ]
80 }
81
82 webrtc_fuzzer_test("ulpfec_header_reader_fuzzer") {
83 sources = [
84 "ulpfec_header_reader_fuzzer.cc",
85 ]
86 deps = [
87 "../../modules/rtp_rtcp/",
88 ]
89 }
90
73 webrtc_fuzzer_test("producer_fec_fuzzer") { 91 webrtc_fuzzer_test("producer_fec_fuzzer") {
74 sources = [ 92 sources = [
75 "producer_fec_fuzzer.cc", 93 "producer_fec_fuzzer.cc",
76 ] 94 ]
77 deps = [ 95 deps = [
78 "../../modules/rtp_rtcp/", 96 "../../modules/rtp_rtcp/",
79 ] 97 ]
80 } 98 }
81 99
82 webrtc_fuzzer_test("rtcp_receiver_fuzzer") { 100 webrtc_fuzzer_test("rtcp_receiver_fuzzer") {
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 250
233 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { 251 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") {
234 sources = [ 252 sources = [
235 "pseudotcp_parser_fuzzer.cc", 253 "pseudotcp_parser_fuzzer.cc",
236 ] 254 ]
237 deps = [ 255 deps = [
238 "../../p2p:rtc_p2p", 256 "../../p2p:rtc_p2p",
239 ] 257 ]
240 } 258 }
241 } 259 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/test/fuzzers/flexfec_header_reader_fuzzer.cc » ('j') | webrtc/test/fuzzers/ulpfec_header_reader_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698