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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 "codecs/g722/audio_encoder_g722.cc", | 272 "codecs/g722/audio_encoder_g722.cc", |
273 "codecs/g722/audio_encoder_g722.h", | 273 "codecs/g722/audio_encoder_g722.h", |
274 ] | 274 ] |
275 | 275 |
276 public_configs = [ ":g722_config" ] | 276 public_configs = [ ":g722_config" ] |
277 | 277 |
278 deps = [ | 278 deps = [ |
279 ":legacy_encoded_audio_frame", | 279 ":legacy_encoded_audio_frame", |
280 "../..:webrtc_common", | 280 "../..:webrtc_common", |
281 "../../api/audio_codecs:audio_codecs_api", | 281 "../../api/audio_codecs:audio_codecs_api", |
| 282 "../../api/audio_codecs/g722:audio_encoder_g722_config", |
282 "../../base:rtc_base_approved", | 283 "../../base:rtc_base_approved", |
283 ] | 284 ] |
284 public_deps = [ | 285 public_deps = [ |
285 ":g722_c", | 286 ":g722_c", |
286 ] | 287 ] |
287 } | 288 } |
288 | 289 |
289 rtc_source_set("g722_c") { | 290 rtc_source_set("g722_c") { |
290 visibility = [ ":*" ] # Only targets in this file can depend on this. | 291 visibility = [ ":*" ] # Only targets in this file can depend on this. |
291 sources = [ | 292 sources = [ |
(...skipping 1939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2231 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. | 2232 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. |
2232 # TODO(ossu): Remove this. | 2233 # TODO(ossu): Remove this. |
2233 rtc_source_set("builtin_audio_encoder_factory") { | 2234 rtc_source_set("builtin_audio_encoder_factory") { |
2234 sources = [ | 2235 sources = [ |
2235 "codecs/builtin_audio_encoder_factory.h", | 2236 "codecs/builtin_audio_encoder_factory.h", |
2236 ] | 2237 ] |
2237 deps = [ | 2238 deps = [ |
2238 "../../api/audio_codecs:builtin_audio_encoder_factory", | 2239 "../../api/audio_codecs:builtin_audio_encoder_factory", |
2239 ] | 2240 ] |
2240 } | 2241 } |
OLD | NEW |