Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(352)

Side by Side Diff: webrtc/modules/audio_processing/BUILD.gn

Issue 1190733004: Attempt to reland: Allow intelligibility to compile in apm (https://codereview.webrtc.org/118232300… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressed comments Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 "common.h", 64 "common.h",
65 "echo_cancellation_impl.cc", 65 "echo_cancellation_impl.cc",
66 "echo_cancellation_impl.h", 66 "echo_cancellation_impl.h",
67 "echo_control_mobile_impl.cc", 67 "echo_control_mobile_impl.cc",
68 "echo_control_mobile_impl.h", 68 "echo_control_mobile_impl.h",
69 "gain_control_impl.cc", 69 "gain_control_impl.cc",
70 "gain_control_impl.h", 70 "gain_control_impl.h",
71 "high_pass_filter_impl.cc", 71 "high_pass_filter_impl.cc",
72 "high_pass_filter_impl.h", 72 "high_pass_filter_impl.h",
73 "include/audio_processing.h", 73 "include/audio_processing.h",
74 "intelligibility/intelligibility_enhancer.cc",
75 "intelligibility/intelligibility_enhancer.h",
76 "intelligibility/intelligibility_utils.cc",
77 "intelligibility/intelligibility_utils.h",
74 "level_estimator_impl.cc", 78 "level_estimator_impl.cc",
75 "level_estimator_impl.h", 79 "level_estimator_impl.h",
76 "noise_suppression_impl.cc", 80 "noise_suppression_impl.cc",
77 "noise_suppression_impl.h", 81 "noise_suppression_impl.h",
78 "processing_component.cc", 82 "processing_component.cc",
79 "processing_component.h", 83 "processing_component.h",
80 "rms_level.cc", 84 "rms_level.cc",
81 "rms_level.h", 85 "rms_level.h",
82 "splitting_filter.cc", 86 "splitting_filter.cc",
83 "splitting_filter.h", 87 "splitting_filter.h",
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 275
272 # Disable LTO in audio_processing_neon target due to compiler bug. 276 # Disable LTO in audio_processing_neon target due to compiler bug.
273 if (rtc_use_lto) { 277 if (rtc_use_lto) {
274 cflags -= [ 278 cflags -= [
275 "-flto", 279 "-flto",
276 "-ffat-lto-objects", 280 "-ffat-lto-objects",
277 ] 281 ]
278 } 282 }
279 } 283 }
280 } 284 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698