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("../webrtc.gni") | 10 import("../webrtc.gni") |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
109 "fft4g.c", | 109 "fft4g.c", |
110 "fft4g.h", | 110 "fft4g.h", |
111 "ring_buffer.c", | 111 "ring_buffer.c", |
112 "ring_buffer.h", | 112 "ring_buffer.h", |
113 "signal_processing/auto_corr_to_refl_coef.c", | 113 "signal_processing/auto_corr_to_refl_coef.c", |
114 "signal_processing/auto_correlation.c", | 114 "signal_processing/auto_correlation.c", |
115 "signal_processing/complex_fft_tables.h", | 115 "signal_processing/complex_fft_tables.h", |
116 "signal_processing/copy_set_operations.c", | 116 "signal_processing/copy_set_operations.c", |
117 "signal_processing/cross_correlation.c", | 117 "signal_processing/cross_correlation.c", |
118 "signal_processing/division_operations.c", | 118 "signal_processing/division_operations.c", |
119 "signal_processing/dot_product_with_scale.c", | |
120 "signal_processing/downsample_fast.c", | 119 "signal_processing/downsample_fast.c", |
121 "signal_processing/energy.c", | 120 "signal_processing/energy.c", |
122 "signal_processing/filter_ar.c", | 121 "signal_processing/filter_ar.c", |
123 "signal_processing/filter_ma_fast_q12.c", | 122 "signal_processing/filter_ma_fast_q12.c", |
124 "signal_processing/get_hanning_window.c", | 123 "signal_processing/get_hanning_window.c", |
125 "signal_processing/get_scaling_square.c", | 124 "signal_processing/get_scaling_square.c", |
126 "signal_processing/ilbc_specific_functions.c", | 125 "signal_processing/ilbc_specific_functions.c", |
127 "signal_processing/include/real_fft.h", | 126 "signal_processing/include/real_fft.h", |
128 "signal_processing/include/signal_processing_library.h", | 127 "signal_processing/include/signal_processing_library.h", |
129 "signal_processing/include/spl_inl.h", | 128 "signal_processing/include/spl_inl.h", |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
196 "signal_processing/spl_sqrt_floor.c", | 195 "signal_processing/spl_sqrt_floor.c", |
197 ] | 196 ] |
198 } | 197 } |
199 | 198 |
200 if (is_win) { | 199 if (is_win) { |
201 cflags = [ "/wd4334" ] # Ignore warning on shift operator promotion. | 200 cflags = [ "/wd4334" ] # Ignore warning on shift operator promotion. |
202 } | 201 } |
203 | 202 |
204 public_configs = [ ":common_audio_config" ] | 203 public_configs = [ ":common_audio_config" ] |
205 deps = [ | 204 deps = [ |
205 ":common_audio_cc", | |
206 "..:webrtc_common", | |
207 "../base:rtc_base_approved", | |
208 "../system_wrappers:system_wrappers", | |
209 ] | |
210 } | |
211 | |
212 rtc_source_set("common_audio_cc") { | |
213 visibility = [ ":*" ] # Only targets in this file can depend on this. | |
214 sources = [ | |
215 "signal_processing/dot_product_with_scale.cc", | |
216 "signal_processing/dot_product_with_scale.h", | |
217 ] | |
218 | |
219 if (is_win) { | |
220 cflags = [ "/wd4334" ] # Ignore warning on shift operator promotion. | |
kwiberg-webrtc
2017/03/07 10:27:21
Ideally, you'd fix this warning instead since it's
hlundin-webrtc
2017/03/07 11:40:05
Done.
kwiberg-webrtc
2017/03/07 11:54:51
Aha, it was that easy!
| |
221 } | |
222 | |
223 public_configs = [ ":common_audio_config" ] | |
224 deps = [ | |
206 "..:webrtc_common", | 225 "..:webrtc_common", |
207 "../base:rtc_base_approved", | 226 "../base:rtc_base_approved", |
208 "../system_wrappers:system_wrappers", | 227 "../system_wrappers:system_wrappers", |
209 ] | 228 ] |
210 } | 229 } |
211 | 230 |
212 rtc_source_set("sinc_resampler") { | 231 rtc_source_set("sinc_resampler") { |
213 sources = [ | 232 sources = [ |
214 "resampler/sinc_resampler.h", | 233 "resampler/sinc_resampler.h", |
215 ] | 234 ] |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
387 "//testing/gtest", | 406 "//testing/gtest", |
388 ] | 407 ] |
389 | 408 |
390 if (is_android) { | 409 if (is_android) { |
391 deps += [ "//testing/android/native_test:native_test_support" ] | 410 deps += [ "//testing/android/native_test:native_test_support" ] |
392 | 411 |
393 shard_timeout = 900 | 412 shard_timeout = 900 |
394 } | 413 } |
395 } | 414 } |
396 } | 415 } |
OLD | NEW |