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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 "common.h", | 82 "common.h", |
83 "echo_cancellation_impl.cc", | 83 "echo_cancellation_impl.cc", |
84 "echo_cancellation_impl.h", | 84 "echo_cancellation_impl.h", |
85 "echo_control_mobile_impl.cc", | 85 "echo_control_mobile_impl.cc", |
86 "echo_control_mobile_impl.h", | 86 "echo_control_mobile_impl.h", |
87 "gain_control_impl.cc", | 87 "gain_control_impl.cc", |
88 "gain_control_impl.h", | 88 "gain_control_impl.h", |
89 "high_pass_filter_impl.cc", | 89 "high_pass_filter_impl.cc", |
90 "high_pass_filter_impl.h", | 90 "high_pass_filter_impl.h", |
91 "include/audio_processing.h", | 91 "include/audio_processing.h", |
92 "intelligibility/intelligibility_enhancer.cc", | |
93 "intelligibility/intelligibility_enhancer.h", | |
94 "intelligibility/intelligibility_utils.cc", | |
95 "intelligibility/intelligibility_utils.h", | |
96 "level_estimator_impl.cc", | 92 "level_estimator_impl.cc", |
97 "level_estimator_impl.h", | 93 "level_estimator_impl.h", |
98 "noise_suppression_impl.cc", | 94 "noise_suppression_impl.cc", |
99 "noise_suppression_impl.h", | 95 "noise_suppression_impl.h", |
100 "processing_component.cc", | 96 "processing_component.cc", |
101 "processing_component.h", | 97 "processing_component.h", |
102 "rms_level.cc", | 98 "rms_level.cc", |
103 "rms_level.h", | 99 "rms_level.h", |
104 "splitting_filter.cc", | 100 "splitting_filter.cc", |
105 "splitting_filter.h", | 101 "splitting_filter.h", |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 | 269 |
274 # Disable LTO in audio_processing_neon target due to compiler bug. | 270 # Disable LTO in audio_processing_neon target due to compiler bug. |
275 if (rtc_use_lto) { | 271 if (rtc_use_lto) { |
276 cflags -= [ | 272 cflags -= [ |
277 "-flto", | 273 "-flto", |
278 "-ffat-lto-objects", | 274 "-ffat-lto-objects", |
279 ] | 275 ] |
280 } | 276 } |
281 } | 277 } |
282 } | 278 } |
OLD | NEW |