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 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
785 "codecs/pcm16b/include", | 785 "codecs/pcm16b/include", |
786 ] | 786 ] |
787 } | 787 } |
788 | 788 |
789 rtc_static_library("pcm16b") { | 789 rtc_static_library("pcm16b") { |
790 sources = [ | 790 sources = [ |
791 "codecs/pcm16b/audio_decoder_pcm16b.cc", | 791 "codecs/pcm16b/audio_decoder_pcm16b.cc", |
792 "codecs/pcm16b/audio_decoder_pcm16b.h", | 792 "codecs/pcm16b/audio_decoder_pcm16b.h", |
793 "codecs/pcm16b/audio_encoder_pcm16b.cc", | 793 "codecs/pcm16b/audio_encoder_pcm16b.cc", |
794 "codecs/pcm16b/audio_encoder_pcm16b.h", | 794 "codecs/pcm16b/audio_encoder_pcm16b.h", |
| 795 "codecs/pcm16b/pcm16b_common.cc", |
| 796 "codecs/pcm16b/pcm16b_common.h", |
795 ] | 797 ] |
796 | 798 |
797 deps = [ | 799 deps = [ |
798 ":g711", | 800 ":g711", |
799 ":legacy_encoded_audio_frame", | 801 ":legacy_encoded_audio_frame", |
800 "../..:webrtc_common", | 802 "../..:webrtc_common", |
801 "../../api/audio_codecs:audio_codecs_api", | 803 "../../api/audio_codecs:audio_codecs_api", |
802 "../../rtc_base:rtc_base_approved", | 804 "../../rtc_base:rtc_base_approved", |
803 ] | 805 ] |
804 public_deps = [ | 806 public_deps = [ |
(...skipping 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2265 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. | 2267 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. |
2266 # TODO(ossu): Remove this. | 2268 # TODO(ossu): Remove this. |
2267 rtc_source_set("builtin_audio_encoder_factory") { | 2269 rtc_source_set("builtin_audio_encoder_factory") { |
2268 sources = [ | 2270 sources = [ |
2269 "codecs/builtin_audio_encoder_factory.h", | 2271 "codecs/builtin_audio_encoder_factory.h", |
2270 ] | 2272 ] |
2271 deps = [ | 2273 deps = [ |
2272 "../../api/audio_codecs:builtin_audio_encoder_factory", | 2274 "../../api/audio_codecs:builtin_audio_encoder_factory", |
2273 ] | 2275 ] |
2274 } | 2276 } |
OLD | NEW |