| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "transient/transient_detector.cc", | 102 "transient/transient_detector.cc", |
| 103 "transient/transient_detector.h", | 103 "transient/transient_detector.h", |
| 104 "transient/transient_suppressor.cc", | 104 "transient/transient_suppressor.cc", |
| 105 "transient/transient_suppressor.h", | 105 "transient/transient_suppressor.h", |
| 106 "transient/wpd_node.cc", | 106 "transient/wpd_node.cc", |
| 107 "transient/wpd_node.h", | 107 "transient/wpd_node.h", |
| 108 "transient/wpd_tree.cc", | 108 "transient/wpd_tree.cc", |
| 109 "transient/wpd_tree.h", | 109 "transient/wpd_tree.h", |
| 110 "typing_detection.cc", | 110 "typing_detection.cc", |
| 111 "typing_detection.h", | 111 "typing_detection.h", |
| 112 "utility/block_mean_calculator.cc", |
| 113 "utility/block_mean_calculator.h", |
| 112 "utility/delay_estimator.c", | 114 "utility/delay_estimator.c", |
| 113 "utility/delay_estimator.h", | 115 "utility/delay_estimator.h", |
| 114 "utility/delay_estimator_internal.h", | 116 "utility/delay_estimator_internal.h", |
| 115 "utility/delay_estimator_wrapper.c", | 117 "utility/delay_estimator_wrapper.c", |
| 116 "utility/delay_estimator_wrapper.h", | 118 "utility/delay_estimator_wrapper.h", |
| 117 "vad/common.h", | 119 "vad/common.h", |
| 118 "vad/gmm.cc", | 120 "vad/gmm.cc", |
| 119 "vad/gmm.h", | 121 "vad/gmm.h", |
| 120 "vad/noise_gmm_tables.h", | 122 "vad/noise_gmm_tables.h", |
| 121 "vad/pitch_based_vad.cc", | 123 "vad/pitch_based_vad.cc", |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 } | 281 } |
| 280 | 282 |
| 281 configs += [ "../..:common_config" ] | 283 configs += [ "../..:common_config" ] |
| 282 public_configs = [ "../..:common_inherited_config" ] | 284 public_configs = [ "../..:common_inherited_config" ] |
| 283 | 285 |
| 284 deps = [ | 286 deps = [ |
| 285 "../../common_audio", | 287 "../../common_audio", |
| 286 ] | 288 ] |
| 287 } | 289 } |
| 288 } | 290 } |
| OLD | NEW |