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 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
780 "neteq/audio_multi_vector.cc", | 780 "neteq/audio_multi_vector.cc", |
781 "neteq/audio_multi_vector.h", | 781 "neteq/audio_multi_vector.h", |
782 "neteq/audio_vector.cc", | 782 "neteq/audio_vector.cc", |
783 "neteq/audio_vector.h", | 783 "neteq/audio_vector.h", |
784 "neteq/background_noise.cc", | 784 "neteq/background_noise.cc", |
785 "neteq/background_noise.h", | 785 "neteq/background_noise.h", |
786 "neteq/buffer_level_filter.cc", | 786 "neteq/buffer_level_filter.cc", |
787 "neteq/buffer_level_filter.h", | 787 "neteq/buffer_level_filter.h", |
788 "neteq/comfort_noise.cc", | 788 "neteq/comfort_noise.cc", |
789 "neteq/comfort_noise.h", | 789 "neteq/comfort_noise.h", |
| 790 "neteq/cross_correlation.cc", |
| 791 "neteq/cross_correlation.h", |
790 "neteq/decision_logic.cc", | 792 "neteq/decision_logic.cc", |
791 "neteq/decision_logic.h", | 793 "neteq/decision_logic.h", |
792 "neteq/decision_logic_fax.cc", | 794 "neteq/decision_logic_fax.cc", |
793 "neteq/decision_logic_fax.h", | 795 "neteq/decision_logic_fax.h", |
794 "neteq/decision_logic_normal.cc", | 796 "neteq/decision_logic_normal.cc", |
795 "neteq/decision_logic_normal.h", | 797 "neteq/decision_logic_normal.h", |
796 "neteq/decoder_database.cc", | 798 "neteq/decoder_database.cc", |
797 "neteq/decoder_database.h", | 799 "neteq/decoder_database.h", |
798 "neteq/defines.h", | 800 "neteq/defines.h", |
799 "neteq/delay_manager.cc", | 801 "neteq/delay_manager.cc", |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
876 defines += [ "WEBRTC_CODEC_ISACFX" ] | 878 defines += [ "WEBRTC_CODEC_ISACFX" ] |
877 deps += [ ":isac_fix" ] | 879 deps += [ ":isac_fix" ] |
878 } else { | 880 } else { |
879 defines += [ "WEBRTC_CODEC_ISAC" ] | 881 defines += [ "WEBRTC_CODEC_ISAC" ] |
880 deps += [ ":isac" ] | 882 deps += [ ":isac" ] |
881 } | 883 } |
882 defines += [ "WEBRTC_CODEC_G722" ] | 884 defines += [ "WEBRTC_CODEC_G722" ] |
883 deps += [ ":g722" ] | 885 deps += [ ":g722" ] |
884 } | 886 } |
885 } | 887 } |
OLD | NEW |