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("//build/config/arm.gni") | 9 import("//build/config/arm.gni") |
10 import("../../build/webrtc.gni") | 10 import("../../build/webrtc.gni") |
(...skipping 18 matching lines...) Expand all Loading... |
29 "main/acm2/audio_coding_module_impl.cc", | 29 "main/acm2/audio_coding_module_impl.cc", |
30 "main/acm2/audio_coding_module_impl.h", | 30 "main/acm2/audio_coding_module_impl.h", |
31 "main/acm2/call_statistics.cc", | 31 "main/acm2/call_statistics.cc", |
32 "main/acm2/call_statistics.h", | 32 "main/acm2/call_statistics.h", |
33 "main/acm2/codec_manager.cc", | 33 "main/acm2/codec_manager.cc", |
34 "main/acm2/codec_manager.h", | 34 "main/acm2/codec_manager.h", |
35 "main/acm2/codec_owner.cc", | 35 "main/acm2/codec_owner.cc", |
36 "main/acm2/codec_owner.h", | 36 "main/acm2/codec_owner.h", |
37 "main/acm2/initial_delay_manager.cc", | 37 "main/acm2/initial_delay_manager.cc", |
38 "main/acm2/initial_delay_manager.h", | 38 "main/acm2/initial_delay_manager.h", |
39 "main/acm2/nack.cc", | |
40 "main/acm2/nack.h", | |
41 "main/interface/audio_coding_module.h", | 39 "main/interface/audio_coding_module.h", |
42 "main/interface/audio_coding_module_typedefs.h", | 40 "main/interface/audio_coding_module_typedefs.h", |
43 ] | 41 ] |
44 | 42 |
45 defines = [] | 43 defines = [] |
46 | 44 |
47 configs += [ "../..:common_config" ] | 45 configs += [ "../..:common_config" ] |
48 | 46 |
49 public_configs = [ | 47 public_configs = [ |
50 "../..:common_inherited_config", | 48 "../..:common_inherited_config", |
(...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 "neteq/dsp_helper.h", | 758 "neteq/dsp_helper.h", |
761 "neteq/dtmf_buffer.cc", | 759 "neteq/dtmf_buffer.cc", |
762 "neteq/dtmf_buffer.h", | 760 "neteq/dtmf_buffer.h", |
763 "neteq/dtmf_tone_generator.cc", | 761 "neteq/dtmf_tone_generator.cc", |
764 "neteq/dtmf_tone_generator.h", | 762 "neteq/dtmf_tone_generator.h", |
765 "neteq/expand.cc", | 763 "neteq/expand.cc", |
766 "neteq/expand.h", | 764 "neteq/expand.h", |
767 "neteq/interface/neteq.h", | 765 "neteq/interface/neteq.h", |
768 "neteq/merge.cc", | 766 "neteq/merge.cc", |
769 "neteq/merge.h", | 767 "neteq/merge.h", |
| 768 "neteq/nack.cc", |
| 769 "neteq/nack.h", |
770 "neteq/neteq.cc", | 770 "neteq/neteq.cc", |
771 "neteq/neteq_impl.cc", | 771 "neteq/neteq_impl.cc", |
772 "neteq/neteq_impl.h", | 772 "neteq/neteq_impl.h", |
773 "neteq/normal.cc", | 773 "neteq/normal.cc", |
774 "neteq/normal.h", | 774 "neteq/normal.h", |
775 "neteq/packet_buffer.cc", | 775 "neteq/packet_buffer.cc", |
776 "neteq/packet_buffer.h", | 776 "neteq/packet_buffer.h", |
777 "neteq/payload_splitter.cc", | 777 "neteq/payload_splitter.cc", |
778 "neteq/payload_splitter.h", | 778 "neteq/payload_splitter.h", |
779 "neteq/post_decode_vad.cc", | 779 "neteq/post_decode_vad.cc", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
826 deps += [ ":isac" ] | 826 deps += [ ":isac" ] |
827 } | 827 } |
828 defines += [ "WEBRTC_CODEC_G722" ] | 828 defines += [ "WEBRTC_CODEC_G722" ] |
829 deps += [ ":g722" ] | 829 deps += [ ":g722" ] |
830 } | 830 } |
831 if (!build_with_mozilla && !build_with_chromium) { | 831 if (!build_with_mozilla && !build_with_chromium) { |
832 defines += [ "WEBRTC_CODEC_ILBC" ] | 832 defines += [ "WEBRTC_CODEC_ILBC" ] |
833 deps += [ ":ilbc" ] | 833 deps += [ ":ilbc" ] |
834 } | 834 } |
835 } | 835 } |
OLD | NEW |