| 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 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 784 "neteq/include/neteq.h", | 784 "neteq/include/neteq.h", |
| 785 "neteq/merge.cc", | 785 "neteq/merge.cc", |
| 786 "neteq/merge.h", | 786 "neteq/merge.h", |
| 787 "neteq/nack.cc", | 787 "neteq/nack.cc", |
| 788 "neteq/nack.h", | 788 "neteq/nack.h", |
| 789 "neteq/neteq.cc", | 789 "neteq/neteq.cc", |
| 790 "neteq/neteq_impl.cc", | 790 "neteq/neteq_impl.cc", |
| 791 "neteq/neteq_impl.h", | 791 "neteq/neteq_impl.h", |
| 792 "neteq/normal.cc", | 792 "neteq/normal.cc", |
| 793 "neteq/normal.h", | 793 "neteq/normal.h", |
| 794 "neteq/packet.cc", |
| 795 "neteq/packet.h", |
| 794 "neteq/packet_buffer.cc", | 796 "neteq/packet_buffer.cc", |
| 795 "neteq/packet_buffer.h", | 797 "neteq/packet_buffer.h", |
| 796 "neteq/payload_splitter.cc", | 798 "neteq/payload_splitter.cc", |
| 797 "neteq/payload_splitter.h", | 799 "neteq/payload_splitter.h", |
| 798 "neteq/post_decode_vad.cc", | 800 "neteq/post_decode_vad.cc", |
| 799 "neteq/post_decode_vad.h", | 801 "neteq/post_decode_vad.h", |
| 800 "neteq/preemptive_expand.cc", | 802 "neteq/preemptive_expand.cc", |
| 801 "neteq/preemptive_expand.h", | 803 "neteq/preemptive_expand.h", |
| 802 "neteq/random_vector.cc", | 804 "neteq/random_vector.cc", |
| 803 "neteq/random_vector.h", | 805 "neteq/random_vector.h", |
| 804 "neteq/rtcp.cc", | 806 "neteq/rtcp.cc", |
| 805 "neteq/rtcp.h", | 807 "neteq/rtcp.h", |
| 806 "neteq/statistics_calculator.cc", | 808 "neteq/statistics_calculator.cc", |
| 807 "neteq/statistics_calculator.h", | 809 "neteq/statistics_calculator.h", |
| 808 "neteq/sync_buffer.cc", | 810 "neteq/sync_buffer.cc", |
| 809 "neteq/sync_buffer.h", | 811 "neteq/sync_buffer.h", |
| 812 "neteq/tick_timer.cc", |
| 813 "neteq/tick_timer.h", |
| 810 "neteq/time_stretch.cc", | 814 "neteq/time_stretch.cc", |
| 811 "neteq/time_stretch.h", | 815 "neteq/time_stretch.h", |
| 812 "neteq/timestamp_scaler.cc", | 816 "neteq/timestamp_scaler.cc", |
| 813 "neteq/timestamp_scaler.h", | 817 "neteq/timestamp_scaler.h", |
| 814 ] | 818 ] |
| 815 | 819 |
| 816 configs += [ "../..:common_config" ] | 820 configs += [ "../..:common_config" ] |
| 817 | 821 |
| 818 public_configs = [ | 822 public_configs = [ |
| 819 "../..:common_inherited_config", | 823 "../..:common_inherited_config", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 845 defines += [ "WEBRTC_CODEC_ISACFX" ] | 849 defines += [ "WEBRTC_CODEC_ISACFX" ] |
| 846 deps += [ ":isac_fix" ] | 850 deps += [ ":isac_fix" ] |
| 847 } else { | 851 } else { |
| 848 defines += [ "WEBRTC_CODEC_ISAC" ] | 852 defines += [ "WEBRTC_CODEC_ISAC" ] |
| 849 deps += [ ":isac" ] | 853 deps += [ ":isac" ] |
| 850 } | 854 } |
| 851 defines += [ "WEBRTC_CODEC_G722" ] | 855 defines += [ "WEBRTC_CODEC_G722" ] |
| 852 deps += [ ":g722" ] | 856 deps += [ ":g722" ] |
| 853 } | 857 } |
| 854 } | 858 } |
| OLD | NEW |