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("../../webrtc.gni") | 9 import("../../webrtc.gni") |
10 import("//build/config/features.gni") | 10 import("//build/config/features.gni") |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 ] | 111 ] |
112 } | 112 } |
113 | 113 |
114 webrtc_fuzzer_test("ulpfec_generator_fuzzer") { | 114 webrtc_fuzzer_test("ulpfec_generator_fuzzer") { |
115 sources = [ | 115 sources = [ |
116 "ulpfec_generator_fuzzer.cc", | 116 "ulpfec_generator_fuzzer.cc", |
117 ] | 117 ] |
118 deps = [ | 118 deps = [ |
119 "../../base:rtc_base_approved", | 119 "../../base:rtc_base_approved", |
120 "../../modules/rtp_rtcp", | 120 "../../modules/rtp_rtcp", |
121 "../../modules/rtp_rtcp:rtp_rtcp_unittests", | 121 "../../modules/rtp_rtcp:fec_test_helper", |
122 ] | 122 ] |
123 } | 123 } |
124 | 124 |
125 webrtc_fuzzer_test("flexfec_receiver_fuzzer") { | 125 webrtc_fuzzer_test("flexfec_receiver_fuzzer") { |
126 sources = [ | 126 sources = [ |
127 "flexfec_receiver_fuzzer.cc", | 127 "flexfec_receiver_fuzzer.cc", |
128 ] | 128 ] |
129 deps = [ | 129 deps = [ |
130 "../../base:rtc_base_approved", | 130 "../../base:rtc_base_approved", |
131 "../../modules/rtp_rtcp", | 131 "../../modules/rtp_rtcp", |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { | 329 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { |
330 sources = [ | 330 sources = [ |
331 "transport_feedback_packet_loss_tracker_fuzzer.cc", | 331 "transport_feedback_packet_loss_tracker_fuzzer.cc", |
332 ] | 332 ] |
333 deps = [ | 333 deps = [ |
334 "../../base:rtc_base_approved", | 334 "../../base:rtc_base_approved", |
335 "../../modules/rtp_rtcp", | 335 "../../modules/rtp_rtcp", |
336 "../../voice_engine", | 336 "../../voice_engine", |
337 ] | 337 ] |
338 } | 338 } |
OLD | NEW |