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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 deps = [ | 250 deps = [ |
251 "../../media:media", | 251 "../../media:media", |
252 ] | 252 ] |
253 } | 253 } |
254 | 254 |
255 webrtc_fuzzer_test("neteq_rtp_fuzzer") { | 255 webrtc_fuzzer_test("neteq_rtp_fuzzer") { |
256 sources = [ | 256 sources = [ |
257 "neteq_rtp_fuzzer.cc", | 257 "neteq_rtp_fuzzer.cc", |
258 ] | 258 ] |
259 deps = [ | 259 deps = [ |
| 260 "../../base:rtc_base_approved", |
| 261 "../../base:rtc_base_tests_utils", |
260 "../../modules/audio_coding:neteq", | 262 "../../modules/audio_coding:neteq", |
261 "../../modules/audio_coding:neteq_tools_minimal", | 263 "../../modules/audio_coding:neteq_tools_minimal", |
262 "../../modules/audio_coding:pcm16b", | 264 "../../modules/audio_coding:pcm16b", |
263 "../../modules/rtp_rtcp", | 265 "../../modules/rtp_rtcp", |
264 ] | 266 ] |
265 } | 267 } |
266 | 268 |
267 webrtc_fuzzer_test("sdp_parser_fuzzer") { | 269 webrtc_fuzzer_test("sdp_parser_fuzzer") { |
268 sources = [ | 270 sources = [ |
269 "sdp_parser_fuzzer.cc", | 271 "sdp_parser_fuzzer.cc", |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 | 309 |
308 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { | 310 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { |
309 sources = [ | 311 sources = [ |
310 "transport_feedback_packet_loss_tracker_fuzzer.cc", | 312 "transport_feedback_packet_loss_tracker_fuzzer.cc", |
311 ] | 313 ] |
312 deps = [ | 314 deps = [ |
313 "../../modules/rtp_rtcp", | 315 "../../modules/rtp_rtcp", |
314 "../../voice_engine", | 316 "../../voice_engine", |
315 ] | 317 ] |
316 } | 318 } |
OLD | NEW |