Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(595)

Side by Side Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 2996993002: Revert of L16 implementation of the Audio{En,De}coderFactoryTemplate APIs (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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",
797 ] 795 ]
798 796
799 deps = [ 797 deps = [
800 ":g711", 798 ":g711",
801 ":legacy_encoded_audio_frame", 799 ":legacy_encoded_audio_frame",
802 "../..:webrtc_common", 800 "../..:webrtc_common",
803 "../../api/audio_codecs:audio_codecs_api", 801 "../../api/audio_codecs:audio_codecs_api",
804 "../../rtc_base:rtc_base_approved", 802 "../../rtc_base:rtc_base_approved",
805 ] 803 ]
806 public_deps = [ 804 public_deps = [
(...skipping 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after
2267 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. 2265 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead.
2268 # TODO(ossu): Remove this. 2266 # TODO(ossu): Remove this.
2269 rtc_source_set("builtin_audio_encoder_factory") { 2267 rtc_source_set("builtin_audio_encoder_factory") {
2270 sources = [ 2268 sources = [
2271 "codecs/builtin_audio_encoder_factory.h", 2269 "codecs/builtin_audio_encoder_factory.h",
2272 ] 2270 ]
2273 deps = [ 2271 deps = [
2274 "../../api/audio_codecs:builtin_audio_encoder_factory", 2272 "../../api/audio_codecs:builtin_audio_encoder_factory",
2275 ] 2273 ]
2276 } 2274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698