| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "audio_processing_impl.cc", | 49 "audio_processing_impl.cc", |
| 50 "audio_processing_impl.h", | 50 "audio_processing_impl.h", |
| 51 "beamformer/array_util.cc", | 51 "beamformer/array_util.cc", |
| 52 "beamformer/array_util.h", | 52 "beamformer/array_util.h", |
| 53 "beamformer/complex_matrix.h", | 53 "beamformer/complex_matrix.h", |
| 54 "beamformer/covariance_matrix_generator.cc", | 54 "beamformer/covariance_matrix_generator.cc", |
| 55 "beamformer/covariance_matrix_generator.h", | 55 "beamformer/covariance_matrix_generator.h", |
| 56 "beamformer/matrix.h", | 56 "beamformer/matrix.h", |
| 57 "beamformer/nonlinear_beamformer.cc", | 57 "beamformer/nonlinear_beamformer.cc", |
| 58 "beamformer/nonlinear_beamformer.h", | 58 "beamformer/nonlinear_beamformer.h", |
| 59 "biquad_high_pass_filter.cc", |
| 60 "biquad_high_pass_filter.h", |
| 59 "common.h", | 61 "common.h", |
| 60 "echo_cancellation_impl.cc", | 62 "echo_cancellation_impl.cc", |
| 61 "echo_cancellation_impl.h", | 63 "echo_cancellation_impl.h", |
| 62 "echo_control_mobile_impl.cc", | 64 "echo_control_mobile_impl.cc", |
| 63 "echo_control_mobile_impl.h", | 65 "echo_control_mobile_impl.h", |
| 64 "gain_control_for_experimental_agc.cc", | 66 "gain_control_for_experimental_agc.cc", |
| 65 "gain_control_for_experimental_agc.h", | 67 "gain_control_for_experimental_agc.h", |
| 66 "gain_control_impl.cc", | 68 "gain_control_impl.cc", |
| 67 "gain_control_impl.h", | 69 "gain_control_impl.h", |
| 68 "high_pass_filter_impl.cc", | 70 "high_pass_filter_impl.cc", |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 "test/protobuf_utils.cc", | 444 "test/protobuf_utils.cc", |
| 443 "test/protobuf_utils.h", | 445 "test/protobuf_utils.h", |
| 444 ] | 446 ] |
| 445 | 447 |
| 446 deps = [ | 448 deps = [ |
| 447 ":audioproc_debug_proto", | 449 ":audioproc_debug_proto", |
| 448 ] | 450 ] |
| 449 } | 451 } |
| 450 } | 452 } |
| 451 } | 453 } |
| OLD | NEW |