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

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

Issue 2828793003: GN: Tighten up test target visibility + refactorings (Closed)
Patch Set: Move out fec_test_helper from rtc_include_tests Created 3 years, 8 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 | « webrtc/test/BUILD.gn ('k') | webrtc/tools/network_tester/BUILD.gn » ('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("../../webrtc.gni") 9 import("../../webrtc.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 deps = [ 75 deps = [
76 "../../modules/video_coding/", 76 "../../modules/video_coding/",
77 ] 77 ]
78 } 78 }
79 79
80 webrtc_fuzzer_test("flexfec_header_reader_fuzzer") { 80 webrtc_fuzzer_test("flexfec_header_reader_fuzzer") {
81 sources = [ 81 sources = [
82 "flexfec_header_reader_fuzzer.cc", 82 "flexfec_header_reader_fuzzer.cc",
83 ] 83 ]
84 deps = [ 84 deps = [
85 "../../modules/rtp_rtcp/", 85 "../../modules/rtp_rtcp",
86 ] 86 ]
87 } 87 }
88 88
89 webrtc_fuzzer_test("flexfec_sender_fuzzer") { 89 webrtc_fuzzer_test("flexfec_sender_fuzzer") {
90 sources = [ 90 sources = [
91 "flexfec_sender_fuzzer.cc", 91 "flexfec_sender_fuzzer.cc",
92 ] 92 ]
93 deps = [ 93 deps = [
94 "../../modules/rtp_rtcp/", 94 "../../modules/rtp_rtcp",
95 ] 95 ]
96 libfuzzer_options = [ "max_len=200" ] 96 libfuzzer_options = [ "max_len=200" ]
97 } 97 }
98 98
99 webrtc_fuzzer_test("ulpfec_header_reader_fuzzer") { 99 webrtc_fuzzer_test("ulpfec_header_reader_fuzzer") {
100 sources = [ 100 sources = [
101 "ulpfec_header_reader_fuzzer.cc", 101 "ulpfec_header_reader_fuzzer.cc",
102 ] 102 ]
103 deps = [ 103 deps = [
104 "../../modules/rtp_rtcp/", 104 "../../modules/rtp_rtcp",
105 "../../modules/rtp_rtcp:fec_test_helper",
105 ] 106 ]
106 } 107 }
107 108
108 webrtc_fuzzer_test("ulpfec_generator_fuzzer") { 109 webrtc_fuzzer_test("ulpfec_generator_fuzzer") {
109 sources = [ 110 sources = [
110 "ulpfec_generator_fuzzer.cc", 111 "ulpfec_generator_fuzzer.cc",
111 ] 112 ]
112 deps = [ 113 deps = [
113 "../../modules/rtp_rtcp/", 114 "../../base:rtc_base_approved",
115 "../../modules/rtp_rtcp",
116 "../../modules/rtp_rtcp:fec_test_helper",
114 ] 117 ]
115 } 118 }
116 119
117 webrtc_fuzzer_test("flexfec_receiver_fuzzer") { 120 webrtc_fuzzer_test("flexfec_receiver_fuzzer") {
118 sources = [ 121 sources = [
119 "flexfec_receiver_fuzzer.cc", 122 "flexfec_receiver_fuzzer.cc",
120 ] 123 ]
121 deps = [ 124 deps = [
122 "../../modules/rtp_rtcp/", 125 "../../modules/rtp_rtcp",
123 ] 126 ]
124 libfuzzer_options = [ "max_len=2000" ] 127 libfuzzer_options = [ "max_len=2000" ]
125 } 128 }
126 129
127 webrtc_fuzzer_test("packet_buffer_fuzzer") { 130 webrtc_fuzzer_test("packet_buffer_fuzzer") {
128 sources = [ 131 sources = [
129 "packet_buffer_fuzzer.cc", 132 "packet_buffer_fuzzer.cc",
130 ] 133 ]
131 deps = [ 134 deps = [
132 "../../modules/video_coding/", 135 "../../modules/video_coding/",
133 ] 136 ]
134 libfuzzer_options = [ "max_len=2000" ] 137 libfuzzer_options = [ "max_len=2000" ]
135 } 138 }
136 139
137 webrtc_fuzzer_test("rtcp_receiver_fuzzer") { 140 webrtc_fuzzer_test("rtcp_receiver_fuzzer") {
138 sources = [ 141 sources = [
139 "rtcp_receiver_fuzzer.cc", 142 "rtcp_receiver_fuzzer.cc",
140 ] 143 ]
141 deps = [ 144 deps = [
142 "../../modules/rtp_rtcp/", 145 "../../modules/rtp_rtcp",
143 ] 146 ]
144 seed_corpus = "corpora/rtcp-corpus" 147 seed_corpus = "corpora/rtcp-corpus"
145 } 148 }
146 149
147 webrtc_fuzzer_test("rtp_packet_fuzzer") { 150 webrtc_fuzzer_test("rtp_packet_fuzzer") {
148 sources = [ 151 sources = [
149 "rtp_packet_fuzzer.cc", 152 "rtp_packet_fuzzer.cc",
150 ] 153 ]
151 deps = [ 154 deps = [
152 "../../modules/rtp_rtcp/", 155 "../../modules/rtp_rtcp",
153 ] 156 ]
154 seed_corpus = "corpora/rtp-corpus" 157 seed_corpus = "corpora/rtp-corpus"
155 } 158 }
156 159
157 webrtc_fuzzer_test("rtp_header_fuzzer") { 160 webrtc_fuzzer_test("rtp_header_fuzzer") {
158 sources = [ 161 sources = [
159 "rtp_header_fuzzer.cc", 162 "rtp_header_fuzzer.cc",
160 ] 163 ]
161 deps = [ 164 deps = [
162 "../../modules/rtp_rtcp/", 165 "../../modules/rtp_rtcp",
163 ] 166 ]
164 } 167 }
165 168
166 webrtc_fuzzer_test("congestion_controller_feedback_fuzzer") { 169 webrtc_fuzzer_test("congestion_controller_feedback_fuzzer") {
167 sources = [ 170 sources = [
168 "congestion_controller_feedback_fuzzer.cc", 171 "congestion_controller_feedback_fuzzer.cc",
169 ] 172 ]
170 deps = [ 173 deps = [
171 "../../logging:rtc_event_log_impl", 174 "../../logging:rtc_event_log_impl",
172 "../../modules/congestion_controller/", 175 "../../modules/congestion_controller/",
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 307
305 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { 308 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") {
306 sources = [ 309 sources = [
307 "transport_feedback_packet_loss_tracker_fuzzer.cc", 310 "transport_feedback_packet_loss_tracker_fuzzer.cc",
308 ] 311 ]
309 deps = [ 312 deps = [
310 "../../modules/rtp_rtcp", 313 "../../modules/rtp_rtcp",
311 "../../voice_engine", 314 "../../voice_engine",
312 ] 315 ]
313 } 316 }
OLDNEW
« no previous file with comments | « webrtc/test/BUILD.gn ('k') | webrtc/tools/network_tester/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698