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

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

Issue 2272423003: Deactivated the intelligibility enhancement functionality by default (Closed)
Patch Set: Changed name of build file flags Created 4 years, 3 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
« no previous file with comments | « webrtc/media/media.gyp ('k') | webrtc/modules/audio_processing/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 "audio_processing/agc/loudness_histogram_unittest.cc", 192 "audio_processing/agc/loudness_histogram_unittest.cc",
193 "audio_processing/agc/mock_agc.h", 193 "audio_processing/agc/mock_agc.h",
194 "audio_processing/audio_buffer_unittest.cc", 194 "audio_processing/audio_buffer_unittest.cc",
195 "audio_processing/beamformer/array_util_unittest.cc", 195 "audio_processing/beamformer/array_util_unittest.cc",
196 "audio_processing/beamformer/complex_matrix_unittest.cc", 196 "audio_processing/beamformer/complex_matrix_unittest.cc",
197 "audio_processing/beamformer/covariance_matrix_generator_unittest.cc", 197 "audio_processing/beamformer/covariance_matrix_generator_unittest.cc",
198 "audio_processing/beamformer/matrix_unittest.cc", 198 "audio_processing/beamformer/matrix_unittest.cc",
199 "audio_processing/beamformer/mock_nonlinear_beamformer.h", 199 "audio_processing/beamformer/mock_nonlinear_beamformer.h",
200 "audio_processing/beamformer/nonlinear_beamformer_unittest.cc", 200 "audio_processing/beamformer/nonlinear_beamformer_unittest.cc",
201 "audio_processing/echo_cancellation_impl_unittest.cc", 201 "audio_processing/echo_cancellation_impl_unittest.cc",
202 "audio_processing/intelligibility/intelligibility_enhancer_unittest.cc",
203 "audio_processing/intelligibility/intelligibility_utils_unittest.cc",
204 "audio_processing/splitting_filter_unittest.cc", 202 "audio_processing/splitting_filter_unittest.cc",
205 "audio_processing/transient/dyadic_decimator_unittest.cc", 203 "audio_processing/transient/dyadic_decimator_unittest.cc",
206 "audio_processing/transient/file_utils.cc", 204 "audio_processing/transient/file_utils.cc",
207 "audio_processing/transient/file_utils.h", 205 "audio_processing/transient/file_utils.h",
208 "audio_processing/transient/file_utils_unittest.cc", 206 "audio_processing/transient/file_utils_unittest.cc",
209 "audio_processing/transient/moving_moments_unittest.cc", 207 "audio_processing/transient/moving_moments_unittest.cc",
210 "audio_processing/transient/transient_detector_unittest.cc", 208 "audio_processing/transient/transient_detector_unittest.cc",
211 "audio_processing/transient/transient_suppressor_unittest.cc", 209 "audio_processing/transient/transient_suppressor_unittest.cc",
212 "audio_processing/transient/wpd_node_unittest.cc", 210 "audio_processing/transient/wpd_node_unittest.cc",
213 "audio_processing/transient/wpd_tree_unittest.cc", 211 "audio_processing/transient/wpd_tree_unittest.cc",
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 "video_coding/utility/quality_scaler_unittest.cc", 339 "video_coding/utility/quality_scaler_unittest.cc",
342 "video_coding/video_coding_robustness_unittest.cc", 340 "video_coding/video_coding_robustness_unittest.cc",
343 "video_coding/video_packet_buffer_unittest.cc", 341 "video_coding/video_packet_buffer_unittest.cc",
344 "video_coding/video_receiver_unittest.cc", 342 "video_coding/video_receiver_unittest.cc",
345 "video_coding/video_sender_unittest.cc", 343 "video_coding/video_sender_unittest.cc",
346 "video_processing/test/denoiser_test.cc", 344 "video_processing/test/denoiser_test.cc",
347 "video_processing/test/video_processing_unittest.cc", 345 "video_processing/test/video_processing_unittest.cc",
348 "video_processing/test/video_processing_unittest.h", 346 "video_processing/test/video_processing_unittest.h",
349 ] 347 ]
350 348
349 if (rtc_enable_intelligibility_enhancer) {
350 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ]
351 sources += [
352 "audio_processing/intelligibility/intelligibility_enhancer_unittest.cc",
353 "audio_processing/intelligibility/intelligibility_utils_unittest.cc",
354 ]
355 } else {
356 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ]
357 }
358
351 if (rtc_libvpx_build_vp9) { 359 if (rtc_libvpx_build_vp9) {
352 sources += 360 sources +=
353 [ "video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc" ] 361 [ "video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc" ]
354 } 362 }
355 363
356 if (rtc_desktop_capture_supported || is_android) { 364 if (rtc_desktop_capture_supported || is_android) {
357 deps += [ "desktop_capture" ] 365 deps += [ "desktop_capture" ]
358 sources += [ 366 sources += [
359 "desktop_capture/desktop_region_unittest.cc", 367 "desktop_capture/desktop_region_unittest.cc",
360 "desktop_capture/differ_block_unittest.cc", 368 "desktop_capture/differ_block_unittest.cc",
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 "audio_device/ios/objc/RTCAudioSessionTest.mm", 633 "audio_device/ios/objc/RTCAudioSessionTest.mm",
626 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", 634 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc",
627 ] 635 ]
628 636
629 ldflags = [ "-ObjC" ] 637 ldflags = [ "-ObjC" ]
630 638
631 # TODO(kjellander): Mac bundle files. 639 # TODO(kjellander): Mac bundle files.
632 } 640 }
633 } 641 }
634 } 642 }
OLDNEW
« no previous file with comments | « webrtc/media/media.gyp ('k') | webrtc/modules/audio_processing/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698