| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "agc/loudness_histogram.cc", | 48 "agc/loudness_histogram.cc", |
| 49 "agc/loudness_histogram.h", | 49 "agc/loudness_histogram.h", |
| 50 "agc/utility.cc", | 50 "agc/utility.cc", |
| 51 "agc/utility.h", | 51 "agc/utility.h", |
| 52 "audio_buffer.cc", | 52 "audio_buffer.cc", |
| 53 "audio_buffer.h", | 53 "audio_buffer.h", |
| 54 "audio_processing_impl.cc", | 54 "audio_processing_impl.cc", |
| 55 "audio_processing_impl.h", | 55 "audio_processing_impl.h", |
| 56 "beamformer/array_util.cc", | 56 "beamformer/array_util.cc", |
| 57 "beamformer/array_util.h", | 57 "beamformer/array_util.h", |
| 58 "beamformer/beamformer.h", | |
| 59 "beamformer/complex_matrix.h", | 58 "beamformer/complex_matrix.h", |
| 60 "beamformer/covariance_matrix_generator.cc", | 59 "beamformer/covariance_matrix_generator.cc", |
| 61 "beamformer/covariance_matrix_generator.h", | 60 "beamformer/covariance_matrix_generator.h", |
| 62 "beamformer/matrix.h", | 61 "beamformer/matrix.h", |
| 63 "beamformer/nonlinear_beamformer.cc", | 62 "beamformer/nonlinear_beamformer.cc", |
| 64 "beamformer/nonlinear_beamformer.h", | 63 "beamformer/nonlinear_beamformer.h", |
| 65 "common.h", | 64 "common.h", |
| 66 "echo_cancellation_impl.cc", | 65 "echo_cancellation_impl.cc", |
| 67 "echo_cancellation_impl.h", | 66 "echo_cancellation_impl.h", |
| 68 "echo_control_mobile_impl.cc", | 67 "echo_control_mobile_impl.cc", |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 "test/protobuf_utils.cc", | 329 "test/protobuf_utils.cc", |
| 331 "test/protobuf_utils.h", | 330 "test/protobuf_utils.h", |
| 332 ] | 331 ] |
| 333 | 332 |
| 334 deps = [ | 333 deps = [ |
| 335 ":audioproc_unittest_proto", | 334 ":audioproc_unittest_proto", |
| 336 ] | 335 ] |
| 337 } | 336 } |
| 338 } | 337 } |
| 339 } | 338 } |
| OLD | NEW |