OLD | NEW |
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 51 matching lines...) Loading... |
62 | 62 |
63 webrtc_fuzzer_test("vp8_qp_parser_fuzzer") { | 63 webrtc_fuzzer_test("vp8_qp_parser_fuzzer") { |
64 sources = [ | 64 sources = [ |
65 "vp8_qp_parser_fuzzer.cc", | 65 "vp8_qp_parser_fuzzer.cc", |
66 ] | 66 ] |
67 deps = [ | 67 deps = [ |
68 "../../modules/video_coding/", | 68 "../../modules/video_coding/", |
69 ] | 69 ] |
70 } | 70 } |
71 | 71 |
| 72 webrtc_fuzzer_test("flexfec_header_reader_fuzzer") { |
| 73 sources = [ |
| 74 "flexfec_header_reader_fuzzer.cc", |
| 75 ] |
| 76 deps = [ |
| 77 "../../modules/rtp_rtcp/", |
| 78 ] |
| 79 } |
| 80 |
| 81 webrtc_fuzzer_test("ulpfec_header_reader_fuzzer") { |
| 82 sources = [ |
| 83 "ulpfec_header_reader_fuzzer.cc", |
| 84 ] |
| 85 deps = [ |
| 86 "../../modules/rtp_rtcp/", |
| 87 ] |
| 88 } |
| 89 |
72 webrtc_fuzzer_test("producer_fec_fuzzer") { | 90 webrtc_fuzzer_test("producer_fec_fuzzer") { |
73 sources = [ | 91 sources = [ |
74 "producer_fec_fuzzer.cc", | 92 "producer_fec_fuzzer.cc", |
75 ] | 93 ] |
76 deps = [ | 94 deps = [ |
77 "../../modules/rtp_rtcp/", | 95 "../../modules/rtp_rtcp/", |
78 ] | 96 ] |
79 } | 97 } |
80 | 98 |
81 webrtc_fuzzer_test("rtcp_receiver_fuzzer") { | 99 webrtc_fuzzer_test("rtcp_receiver_fuzzer") { |
(...skipping 144 matching lines...) Loading... |
226 } | 244 } |
227 | 245 |
228 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { | 246 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { |
229 sources = [ | 247 sources = [ |
230 "pseudotcp_parser_fuzzer.cc", | 248 "pseudotcp_parser_fuzzer.cc", |
231 ] | 249 ] |
232 deps = [ | 250 deps = [ |
233 "../../p2p:rtc_p2p", | 251 "../../p2p:rtc_p2p", |
234 ] | 252 ] |
235 } | 253 } |
OLD | NEW |