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("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
(...skipping 17 matching lines...) Expand all Loading... |
28 "main/acm2/acm_resampler.h", | 28 "main/acm2/acm_resampler.h", |
29 "main/acm2/audio_coding_module.cc", | 29 "main/acm2/audio_coding_module.cc", |
30 "main/acm2/audio_coding_module_impl.cc", | 30 "main/acm2/audio_coding_module_impl.cc", |
31 "main/acm2/audio_coding_module_impl.h", | 31 "main/acm2/audio_coding_module_impl.h", |
32 "main/acm2/call_statistics.cc", | 32 "main/acm2/call_statistics.cc", |
33 "main/acm2/call_statistics.h", | 33 "main/acm2/call_statistics.h", |
34 "main/acm2/codec_manager.cc", | 34 "main/acm2/codec_manager.cc", |
35 "main/acm2/codec_manager.h", | 35 "main/acm2/codec_manager.h", |
36 "main/acm2/codec_owner.cc", | 36 "main/acm2/codec_owner.cc", |
37 "main/acm2/codec_owner.h", | 37 "main/acm2/codec_owner.h", |
| 38 "main/acm2/delayed_logger.cc", |
| 39 "main/acm2/delayed_logger.h", |
38 "main/acm2/initial_delay_manager.cc", | 40 "main/acm2/initial_delay_manager.cc", |
39 "main/acm2/initial_delay_manager.h", | 41 "main/acm2/initial_delay_manager.h", |
40 "main/acm2/nack.cc", | 42 "main/acm2/nack.cc", |
41 "main/acm2/nack.h", | 43 "main/acm2/nack.h", |
42 "main/interface/audio_coding_module.h", | 44 "main/interface/audio_coding_module.h", |
43 "main/interface/audio_coding_module_typedefs.h", | 45 "main/interface/audio_coding_module_typedefs.h", |
44 ] | 46 ] |
45 | 47 |
46 defines = [] | 48 defines = [] |
47 | 49 |
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
813 "../../system_wrappers", | 815 "../../system_wrappers", |
814 ] | 816 ] |
815 | 817 |
816 defines = [] | 818 defines = [] |
817 | 819 |
818 if (rtc_include_opus) { | 820 if (rtc_include_opus) { |
819 defines += [ "WEBRTC_CODEC_OPUS" ] | 821 defines += [ "WEBRTC_CODEC_OPUS" ] |
820 deps += [ ":webrtc_opus" ] | 822 deps += [ ":webrtc_opus" ] |
821 } | 823 } |
822 } | 824 } |
OLD | NEW |