| OLD | NEW |
| 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 { | 9 { |
| 10 'variables': { | 10 'variables': { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 'beamformer/covariance_matrix_generator.cc', | 66 'beamformer/covariance_matrix_generator.cc', |
| 67 'beamformer/covariance_matrix_generator.h', | 67 'beamformer/covariance_matrix_generator.h', |
| 68 'beamformer/matrix.h', | 68 'beamformer/matrix.h', |
| 69 'beamformer/nonlinear_beamformer.cc', | 69 'beamformer/nonlinear_beamformer.cc', |
| 70 'beamformer/nonlinear_beamformer.h', | 70 'beamformer/nonlinear_beamformer.h', |
| 71 'common.h', | 71 'common.h', |
| 72 'echo_cancellation_impl.cc', | 72 'echo_cancellation_impl.cc', |
| 73 'echo_cancellation_impl.h', | 73 'echo_cancellation_impl.h', |
| 74 'echo_control_mobile_impl.cc', | 74 'echo_control_mobile_impl.cc', |
| 75 'echo_control_mobile_impl.h', | 75 'echo_control_mobile_impl.h', |
| 76 'echo_detector/circular_buffer.cc', |
| 77 'echo_detector/circular_buffer.h', |
| 76 'echo_detector/echo_detector.cc', | 78 'echo_detector/echo_detector.cc', |
| 77 'echo_detector/echo_detector.h', | 79 'echo_detector/echo_detector.h', |
| 80 'echo_detector/mean_variance_estimator.cc', |
| 81 'echo_detector/mean_variance_estimator.h', |
| 82 'echo_detector/normalized_covariance_estimator.cc', |
| 83 'echo_detector/normalized_covariance_estimator.h', |
| 84 'echo_detector/sliding_window_minimum.cc', |
| 85 'echo_detector/sliding_window_minimum.h', |
| 78 'gain_control_for_experimental_agc.cc', | 86 'gain_control_for_experimental_agc.cc', |
| 79 'gain_control_for_experimental_agc.h', | 87 'gain_control_for_experimental_agc.h', |
| 80 'gain_control_impl.cc', | 88 'gain_control_impl.cc', |
| 81 'gain_control_impl.h', | 89 'gain_control_impl.h', |
| 82 'high_pass_filter_impl.cc', | 90 'high_pass_filter_impl.cc', |
| 83 'high_pass_filter_impl.h', | 91 'high_pass_filter_impl.h', |
| 84 'include/audio_processing.cc', | 92 'include/audio_processing.cc', |
| 85 'include/audio_processing.h', | 93 'include/audio_processing.h', |
| 86 'include/config.cc', | 94 'include/config.cc', |
| 87 'include/config.h', | 95 'include/config.h', |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 'defines': ['WEBRTC_APM_DEBUG_DUMP=1',], | 327 'defines': ['WEBRTC_APM_DEBUG_DUMP=1',], |
| 320 }], | 328 }], |
| 321 ['apm_debug_dump==0', { | 329 ['apm_debug_dump==0', { |
| 322 'defines': ['WEBRTC_APM_DEBUG_DUMP=0',], | 330 'defines': ['WEBRTC_APM_DEBUG_DUMP=0',], |
| 323 }], | 331 }], |
| 324 ], | 332 ], |
| 325 }], | 333 }], |
| 326 }], | 334 }], |
| 327 ], | 335 ], |
| 328 } | 336 } |
| OLD | NEW |