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

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

Issue 1410073006: ACM: Move NACK functionality inside NetEq (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 1 month 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
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/main/acm2/acm_receiver.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("../../build/webrtc.gni") 10 import("../../build/webrtc.gni")
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 "main/acm2/audio_coding_module_impl.cc", 60 "main/acm2/audio_coding_module_impl.cc",
61 "main/acm2/audio_coding_module_impl.h", 61 "main/acm2/audio_coding_module_impl.h",
62 "main/acm2/call_statistics.cc", 62 "main/acm2/call_statistics.cc",
63 "main/acm2/call_statistics.h", 63 "main/acm2/call_statistics.h",
64 "main/acm2/codec_manager.cc", 64 "main/acm2/codec_manager.cc",
65 "main/acm2/codec_manager.h", 65 "main/acm2/codec_manager.h",
66 "main/acm2/codec_owner.cc", 66 "main/acm2/codec_owner.cc",
67 "main/acm2/codec_owner.h", 67 "main/acm2/codec_owner.h",
68 "main/acm2/initial_delay_manager.cc", 68 "main/acm2/initial_delay_manager.cc",
69 "main/acm2/initial_delay_manager.h", 69 "main/acm2/initial_delay_manager.h",
70 "main/acm2/nack.cc",
71 "main/acm2/nack.h",
72 "main/include/audio_coding_module.h", 70 "main/include/audio_coding_module.h",
73 "main/include/audio_coding_module_typedefs.h", 71 "main/include/audio_coding_module_typedefs.h",
74 ] 72 ]
75 73
76 defines = [] 74 defines = []
77 75
78 configs += [ "../..:common_config" ] 76 configs += [ "../..:common_config" ]
79 77
80 public_configs = [ 78 public_configs = [
81 "../..:common_inherited_config", 79 "../..:common_inherited_config",
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 "neteq/dsp_helper.h", 790 "neteq/dsp_helper.h",
793 "neteq/dtmf_buffer.cc", 791 "neteq/dtmf_buffer.cc",
794 "neteq/dtmf_buffer.h", 792 "neteq/dtmf_buffer.h",
795 "neteq/dtmf_tone_generator.cc", 793 "neteq/dtmf_tone_generator.cc",
796 "neteq/dtmf_tone_generator.h", 794 "neteq/dtmf_tone_generator.h",
797 "neteq/expand.cc", 795 "neteq/expand.cc",
798 "neteq/expand.h", 796 "neteq/expand.h",
799 "neteq/include/neteq.h", 797 "neteq/include/neteq.h",
800 "neteq/merge.cc", 798 "neteq/merge.cc",
801 "neteq/merge.h", 799 "neteq/merge.h",
800 "neteq/nack.cc",
801 "neteq/nack.h",
802 "neteq/neteq.cc", 802 "neteq/neteq.cc",
803 "neteq/neteq_impl.cc", 803 "neteq/neteq_impl.cc",
804 "neteq/neteq_impl.h", 804 "neteq/neteq_impl.h",
805 "neteq/normal.cc", 805 "neteq/normal.cc",
806 "neteq/normal.h", 806 "neteq/normal.h",
807 "neteq/packet_buffer.cc", 807 "neteq/packet_buffer.cc",
808 "neteq/packet_buffer.h", 808 "neteq/packet_buffer.h",
809 "neteq/payload_splitter.cc", 809 "neteq/payload_splitter.cc",
810 "neteq/payload_splitter.h", 810 "neteq/payload_splitter.h",
811 "neteq/post_decode_vad.cc", 811 "neteq/post_decode_vad.cc",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
858 deps += [ ":isac" ] 858 deps += [ ":isac" ]
859 } 859 }
860 defines += [ "WEBRTC_CODEC_G722" ] 860 defines += [ "WEBRTC_CODEC_G722" ]
861 deps += [ ":g722" ] 861 deps += [ ":g722" ]
862 } 862 }
863 if (!build_with_mozilla && !build_with_chromium) { 863 if (!build_with_mozilla && !build_with_chromium) {
864 defines += [ "WEBRTC_CODEC_ILBC" ] 864 defines += [ "WEBRTC_CODEC_ILBC" ]
865 deps += [ ":ilbc" ] 865 deps += [ ":ilbc" ]
866 } 866 }
867 } 867 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/main/acm2/acm_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698