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/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 import("audio_coding.gni") | 10 import("audio_coding.gni") |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 } | 88 } |
89 | 89 |
90 source_set("audio_coding") { | 90 source_set("audio_coding") { |
91 sources = [ | 91 sources = [ |
92 "acm2/acm_common_defs.h", | 92 "acm2/acm_common_defs.h", |
93 "acm2/acm_receiver.cc", | 93 "acm2/acm_receiver.cc", |
94 "acm2/acm_receiver.h", | 94 "acm2/acm_receiver.h", |
95 "acm2/acm_resampler.cc", | 95 "acm2/acm_resampler.cc", |
96 "acm2/acm_resampler.h", | 96 "acm2/acm_resampler.h", |
97 "acm2/audio_coding_module.cc", | 97 "acm2/audio_coding_module.cc", |
98 "acm2/audio_coding_module_impl.cc", | |
99 "acm2/audio_coding_module_impl.h", | |
100 "acm2/call_statistics.cc", | 98 "acm2/call_statistics.cc", |
101 "acm2/call_statistics.h", | 99 "acm2/call_statistics.h", |
102 "acm2/codec_manager.cc", | 100 "acm2/codec_manager.cc", |
103 "acm2/codec_manager.h", | 101 "acm2/codec_manager.h", |
104 "acm2/initial_delay_manager.cc", | 102 "acm2/initial_delay_manager.cc", |
105 "acm2/initial_delay_manager.h", | 103 "acm2/initial_delay_manager.h", |
106 "include/audio_coding_module.h", | 104 "include/audio_coding_module.h", |
107 "include/audio_coding_module_typedefs.h", | 105 "include/audio_coding_module_typedefs.h", |
108 ] | 106 ] |
109 | 107 |
(...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1016 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1014 configs -= [ "//build/config/clang:find_bad_constructs" ] |
1017 } | 1015 } |
1018 | 1016 |
1019 deps = [ | 1017 deps = [ |
1020 "../../common_audio", | 1018 "../../common_audio", |
1021 "../../test:rtp_test_utils", | 1019 "../../test:rtp_test_utils", |
1022 "../rtp_rtcp", | 1020 "../rtp_rtcp", |
1023 ] | 1021 ] |
1024 } | 1022 } |
1025 } | 1023 } |
OLD | NEW |