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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 "neteq/audio_multi_vector.cc", | 753 "neteq/audio_multi_vector.cc", |
754 "neteq/audio_multi_vector.h", | 754 "neteq/audio_multi_vector.h", |
755 "neteq/audio_vector.cc", | 755 "neteq/audio_vector.cc", |
756 "neteq/audio_vector.h", | 756 "neteq/audio_vector.h", |
757 "neteq/background_noise.cc", | 757 "neteq/background_noise.cc", |
758 "neteq/background_noise.h", | 758 "neteq/background_noise.h", |
759 "neteq/buffer_level_filter.cc", | 759 "neteq/buffer_level_filter.cc", |
760 "neteq/buffer_level_filter.h", | 760 "neteq/buffer_level_filter.h", |
761 "neteq/comfort_noise.cc", | 761 "neteq/comfort_noise.cc", |
762 "neteq/comfort_noise.h", | 762 "neteq/comfort_noise.h", |
| 763 "neteq/cross_correlation.cc", |
| 764 "neteq/cross_correlation.h", |
763 "neteq/decision_logic.cc", | 765 "neteq/decision_logic.cc", |
764 "neteq/decision_logic.h", | 766 "neteq/decision_logic.h", |
765 "neteq/decision_logic_fax.cc", | 767 "neteq/decision_logic_fax.cc", |
766 "neteq/decision_logic_fax.h", | 768 "neteq/decision_logic_fax.h", |
767 "neteq/decision_logic_normal.cc", | 769 "neteq/decision_logic_normal.cc", |
768 "neteq/decision_logic_normal.h", | 770 "neteq/decision_logic_normal.h", |
769 "neteq/decoder_database.cc", | 771 "neteq/decoder_database.cc", |
770 "neteq/decoder_database.h", | 772 "neteq/decoder_database.h", |
771 "neteq/defines.h", | 773 "neteq/defines.h", |
772 "neteq/delay_manager.cc", | 774 "neteq/delay_manager.cc", |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 defines += [ "WEBRTC_CODEC_ISACFX" ] | 847 defines += [ "WEBRTC_CODEC_ISACFX" ] |
846 deps += [ ":isac_fix" ] | 848 deps += [ ":isac_fix" ] |
847 } else { | 849 } else { |
848 defines += [ "WEBRTC_CODEC_ISAC" ] | 850 defines += [ "WEBRTC_CODEC_ISAC" ] |
849 deps += [ ":isac" ] | 851 deps += [ ":isac" ] |
850 } | 852 } |
851 defines += [ "WEBRTC_CODEC_G722" ] | 853 defines += [ "WEBRTC_CODEC_G722" ] |
852 deps += [ ":g722" ] | 854 deps += [ ":g722" ] |
853 } | 855 } |
854 } | 856 } |
OLD | NEW |