| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 74     "signal_processing/randomization_functions.c", | 74     "signal_processing/randomization_functions.c", | 
| 75     "signal_processing/real_fft.c", | 75     "signal_processing/real_fft.c", | 
| 76     "signal_processing/refl_coef_to_lpc.c", | 76     "signal_processing/refl_coef_to_lpc.c", | 
| 77     "signal_processing/resample.c", | 77     "signal_processing/resample.c", | 
| 78     "signal_processing/resample_48khz.c", | 78     "signal_processing/resample_48khz.c", | 
| 79     "signal_processing/resample_by_2.c", | 79     "signal_processing/resample_by_2.c", | 
| 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_inl.c", | 
| 84     "signal_processing/spl_sqrt.c", | 85     "signal_processing/spl_sqrt.c", | 
| 85     "signal_processing/splitting_filter.c", | 86     "signal_processing/splitting_filter.c", | 
| 86     "signal_processing/sqrt_of_one_minus_x_squared.c", | 87     "signal_processing/sqrt_of_one_minus_x_squared.c", | 
| 87     "signal_processing/vector_scaling_operations.c", | 88     "signal_processing/vector_scaling_operations.c", | 
| 88     "sparse_fir_filter.cc", | 89     "sparse_fir_filter.cc", | 
| 89     "sparse_fir_filter.h", | 90     "sparse_fir_filter.h", | 
| 90     "vad/include/vad.h", | 91     "vad/include/vad.h", | 
| 91     "vad/include/webrtc_vad.h", | 92     "vad/include/webrtc_vad.h", | 
| 92     "vad/vad.cc", | 93     "vad/vad.cc", | 
| 93     "vad/vad_core.c", | 94     "vad/vad_core.c", | 
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 240     configs += [ "..:common_config" ] | 241     configs += [ "..:common_config" ] | 
| 241     public_configs = [ "..:common_inherited_config" ] | 242     public_configs = [ "..:common_inherited_config" ] | 
| 242 | 243 | 
| 243     if (is_clang) { | 244     if (is_clang) { | 
| 244       # Suppress warnings from Chrome's Clang plugins. | 245       # Suppress warnings from Chrome's Clang plugins. | 
| 245       # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 246       # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 
| 246       configs -= [ "//build/config/clang:find_bad_constructs" ] | 247       configs -= [ "//build/config/clang:find_bad_constructs" ] | 
| 247     } | 248     } | 
| 248   } | 249   } | 
| 249 } | 250 } | 
| OLD | NEW | 
|---|