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 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 "neteq/include/neteq.h", | 782 "neteq/include/neteq.h", |
783 "neteq/merge.cc", | 783 "neteq/merge.cc", |
784 "neteq/merge.h", | 784 "neteq/merge.h", |
785 "neteq/nack.cc", | 785 "neteq/nack.cc", |
786 "neteq/nack.h", | 786 "neteq/nack.h", |
787 "neteq/neteq.cc", | 787 "neteq/neteq.cc", |
788 "neteq/neteq_impl.cc", | 788 "neteq/neteq_impl.cc", |
789 "neteq/neteq_impl.h", | 789 "neteq/neteq_impl.h", |
790 "neteq/normal.cc", | 790 "neteq/normal.cc", |
791 "neteq/normal.h", | 791 "neteq/normal.h", |
| 792 "neteq/packet.cc", |
| 793 "neteq/packet.h", |
792 "neteq/packet_buffer.cc", | 794 "neteq/packet_buffer.cc", |
793 "neteq/packet_buffer.h", | 795 "neteq/packet_buffer.h", |
794 "neteq/payload_splitter.cc", | 796 "neteq/payload_splitter.cc", |
795 "neteq/payload_splitter.h", | 797 "neteq/payload_splitter.h", |
796 "neteq/post_decode_vad.cc", | 798 "neteq/post_decode_vad.cc", |
797 "neteq/post_decode_vad.h", | 799 "neteq/post_decode_vad.h", |
798 "neteq/preemptive_expand.cc", | 800 "neteq/preemptive_expand.cc", |
799 "neteq/preemptive_expand.h", | 801 "neteq/preemptive_expand.h", |
800 "neteq/random_vector.cc", | 802 "neteq/random_vector.cc", |
801 "neteq/random_vector.h", | 803 "neteq/random_vector.h", |
(...skipping 43 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 |