| 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("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "signal_processing/resample_by_2_internal.c", | 80 "signal_processing/resample_by_2_internal.c", |
| 81 "signal_processing/resample_by_2_internal.h", | 81 "signal_processing/resample_by_2_internal.h", |
| 82 "signal_processing/resample_fractional.c", | 82 "signal_processing/resample_fractional.c", |
| 83 "signal_processing/spl_init.c", | 83 "signal_processing/spl_init.c", |
| 84 "signal_processing/spl_sqrt.c", | 84 "signal_processing/spl_sqrt.c", |
| 85 "signal_processing/splitting_filter.c", | 85 "signal_processing/splitting_filter.c", |
| 86 "signal_processing/sqrt_of_one_minus_x_squared.c", | 86 "signal_processing/sqrt_of_one_minus_x_squared.c", |
| 87 "signal_processing/vector_scaling_operations.c", | 87 "signal_processing/vector_scaling_operations.c", |
| 88 "sparse_fir_filter.cc", | 88 "sparse_fir_filter.cc", |
| 89 "sparse_fir_filter.h", | 89 "sparse_fir_filter.h", |
| 90 "swap_queue.h", | |
| 91 "vad/include/vad.h", | 90 "vad/include/vad.h", |
| 92 "vad/include/webrtc_vad.h", | 91 "vad/include/webrtc_vad.h", |
| 93 "vad/vad.cc", | 92 "vad/vad.cc", |
| 94 "vad/vad_core.c", | 93 "vad/vad_core.c", |
| 95 "vad/vad_core.h", | 94 "vad/vad_core.h", |
| 96 "vad/vad_filterbank.c", | 95 "vad/vad_filterbank.c", |
| 97 "vad/vad_filterbank.h", | 96 "vad/vad_filterbank.h", |
| 98 "vad/vad_gmm.c", | 97 "vad/vad_gmm.c", |
| 99 "vad/vad_gmm.h", | 98 "vad/vad_gmm.h", |
| 100 "vad/vad_sp.c", | 99 "vad/vad_sp.c", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 cflags -= [ | 234 cflags -= [ |
| 236 "-flto", | 235 "-flto", |
| 237 "-ffat-lto-objects", | 236 "-ffat-lto-objects", |
| 238 ] | 237 ] |
| 239 } | 238 } |
| 240 | 239 |
| 241 configs += [ "..:common_config" ] | 240 configs += [ "..:common_config" ] |
| 242 public_configs = [ "..:common_inherited_config" ] | 241 public_configs = [ "..:common_inherited_config" ] |
| 243 } | 242 } |
| 244 } | 243 } |
| OLD | NEW |