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 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
846 | 846 |
847 configs += [ "../..:common_config" ] | 847 configs += [ "../..:common_config" ] |
848 | 848 |
849 public_configs = [ | 849 public_configs = [ |
850 "../..:common_inherited_config", | 850 "../..:common_inherited_config", |
851 ":neteq_config", | 851 ":neteq_config", |
852 ] | 852 ] |
853 | 853 |
854 deps = [ | 854 deps = [ |
855 ":audio_decoder_interface", | 855 ":audio_decoder_interface", |
| 856 ":builtin_audio_decoder_factory", |
856 ":cng", | 857 ":cng", |
857 ":g711", | 858 ":g711", |
858 ":pcm16b", | 859 ":pcm16b", |
| 860 ":rent_a_codec", |
859 "../..:webrtc_common", | 861 "../..:webrtc_common", |
860 "../../common_audio", | 862 "../../common_audio", |
861 "../../system_wrappers", | 863 "../../system_wrappers", |
862 ] | 864 ] |
863 | 865 |
864 defines = [] | 866 defines = [] |
865 | 867 |
866 if (rtc_include_ilbc) { | 868 if (rtc_include_ilbc) { |
867 defines += [ "WEBRTC_CODEC_ILBC" ] | 869 defines += [ "WEBRTC_CODEC_ILBC" ] |
868 deps += [ ":ilbc" ] | 870 deps += [ ":ilbc" ] |
869 } | 871 } |
870 if (rtc_include_opus) { | 872 if (rtc_include_opus) { |
871 defines += [ "WEBRTC_CODEC_OPUS" ] | 873 defines += [ "WEBRTC_CODEC_OPUS" ] |
872 deps += [ ":webrtc_opus" ] | 874 deps += [ ":webrtc_opus" ] |
873 } | 875 } |
874 if (!build_with_mozilla) { | 876 if (!build_with_mozilla) { |
875 if (current_cpu == "arm") { | 877 if (current_cpu == "arm") { |
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 |