OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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("audio_coding.gni") | 10 import("audio_coding.gni") |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 "codecs/ilbc/audio_encoder_ilbc.cc", | 315 "codecs/ilbc/audio_encoder_ilbc.cc", |
316 "codecs/ilbc/audio_encoder_ilbc.h", | 316 "codecs/ilbc/audio_encoder_ilbc.h", |
317 ] | 317 ] |
318 | 318 |
319 public_configs = [ ":ilbc_config" ] | 319 public_configs = [ ":ilbc_config" ] |
320 | 320 |
321 deps = [ | 321 deps = [ |
322 ":legacy_encoded_audio_frame", | 322 ":legacy_encoded_audio_frame", |
323 "../..:webrtc_common", | 323 "../..:webrtc_common", |
324 "../../api/audio_codecs:audio_codecs_api", | 324 "../../api/audio_codecs:audio_codecs_api", |
| 325 "../../api/audio_codecs/ilbc:audio_encoder_ilbc_config", |
325 "../../base:rtc_base_approved", | 326 "../../base:rtc_base_approved", |
326 "../../common_audio", | 327 "../../common_audio", |
327 ] | 328 ] |
328 public_deps = [ | 329 public_deps = [ |
329 ":ilbc_c", | 330 ":ilbc_c", |
330 ] | 331 ] |
331 } | 332 } |
332 | 333 |
333 rtc_source_set("ilbc_c") { | 334 rtc_source_set("ilbc_c") { |
334 visibility = [ ":*" ] # Only targets in this file can depend on this. | 335 visibility = [ ":*" ] # Only targets in this file can depend on this. |
(...skipping 1899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2234 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. | 2235 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. |
2235 # TODO(ossu): Remove this. | 2236 # TODO(ossu): Remove this. |
2236 rtc_source_set("builtin_audio_encoder_factory") { | 2237 rtc_source_set("builtin_audio_encoder_factory") { |
2237 sources = [ | 2238 sources = [ |
2238 "codecs/builtin_audio_encoder_factory.h", | 2239 "codecs/builtin_audio_encoder_factory.h", |
2239 ] | 2240 ] |
2240 deps = [ | 2241 deps = [ |
2241 "../../api/audio_codecs:builtin_audio_encoder_factory", | 2242 "../../api/audio_codecs:builtin_audio_encoder_factory", |
2242 ] | 2243 ] |
2243 } | 2244 } |
OLD | NEW |