| 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", | 260 "../../modules/audio_coding:neteq", |
| 261 "../../modules/audio_coding:neteq_test_minimal", | 261 "../../modules/audio_coding:neteq_test_minimal", |
| 262 "../../modules/audio_coding:neteq_unittest_tools", | |
| 263 "../../modules/audio_coding:pcm16b", | 262 "../../modules/audio_coding:pcm16b", |
| 264 "../../modules/rtp_rtcp", | 263 "../../modules/rtp_rtcp", |
| 265 ] | 264 ] |
| 266 } | 265 } |
| 267 | 266 |
| 268 webrtc_fuzzer_test("sdp_parser_fuzzer") { | 267 webrtc_fuzzer_test("sdp_parser_fuzzer") { |
| 269 sources = [ | 268 sources = [ |
| 270 "sdp_parser_fuzzer.cc", | 269 "sdp_parser_fuzzer.cc", |
| 271 ] | 270 ] |
| 272 deps = [ | 271 deps = [ |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 | 307 |
| 309 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { | 308 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { |
| 310 sources = [ | 309 sources = [ |
| 311 "transport_feedback_packet_loss_tracker_fuzzer.cc", | 310 "transport_feedback_packet_loss_tracker_fuzzer.cc", |
| 312 ] | 311 ] |
| 313 deps = [ | 312 deps = [ |
| 314 "../../modules/rtp_rtcp", | 313 "../../modules/rtp_rtcp", |
| 315 "../../voice_engine", | 314 "../../voice_engine", |
| 316 ] | 315 ] |
| 317 } | 316 } |
| OLD | NEW |