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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 ] | 200 ] |
201 } | 201 } |
202 | 202 |
203 rtc_static_library("audio_decoder_fuzzer") { | 203 rtc_static_library("audio_decoder_fuzzer") { |
204 sources = [ | 204 sources = [ |
205 "audio_decoder_fuzzer.cc", | 205 "audio_decoder_fuzzer.cc", |
206 "audio_decoder_fuzzer.h", | 206 "audio_decoder_fuzzer.h", |
207 ] | 207 ] |
208 deps = [ | 208 deps = [ |
209 "../..:webrtc_common", | 209 "../..:webrtc_common", |
| 210 "../../api:optional", |
210 "../../api/audio_codecs:audio_codecs_api", | 211 "../../api/audio_codecs:audio_codecs_api", |
211 "../../modules/rtp_rtcp", | 212 "../../modules/rtp_rtcp", |
212 "../../rtc_base:rtc_base_approved", | 213 "../../rtc_base:rtc_base_approved", |
213 ] | 214 ] |
214 } | 215 } |
215 | 216 |
216 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { | 217 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { |
217 sources = [ | 218 sources = [ |
218 "audio_decoder_ilbc_fuzzer.cc", | 219 "audio_decoder_ilbc_fuzzer.cc", |
219 ] | 220 ] |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 ] | 363 ] |
363 } | 364 } |
364 | 365 |
365 webrtc_fuzzer_test("audio_processing_fuzzer") { | 366 webrtc_fuzzer_test("audio_processing_fuzzer") { |
366 sources = [ | 367 sources = [ |
367 "audio_processing_fuzzer.cc", | 368 "audio_processing_fuzzer.cc", |
368 "audio_processing_fuzzer.h", | 369 "audio_processing_fuzzer.h", |
369 "audio_processing_fuzzer_configs.cc", | 370 "audio_processing_fuzzer_configs.cc", |
370 ] | 371 ] |
371 deps = [ | 372 deps = [ |
| 373 "../../api:optional", |
372 "../../modules:module_api", | 374 "../../modules:module_api", |
373 "../../modules/audio_processing", | 375 "../../modules/audio_processing", |
374 "../../rtc_base:rtc_base_approved", | 376 "../../rtc_base:rtc_base_approved", |
375 ] | 377 ] |
376 } | 378 } |
OLD | NEW |