Chromium Code Reviews| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 94 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 94 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 95 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 95 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 96 } | 96 } |
| 97 | 97 |
| 98 if (current_cpu == "x86" || current_cpu == "x64") { | 98 if (current_cpu == "x86" || current_cpu == "x64") { |
| 99 deps += [ ":common_audio_sse2" ] | 99 deps += [ ":common_audio_sse2" ] |
| 100 } | 100 } |
| 101 } | 101 } |
| 102 | 102 |
| 103 rtc_source_set("common_audio_c") { | 103 rtc_source_set("common_audio_c") { |
| 104 visibility = [ ":*" ] # Only targets in this file can depend on this. | |
|
kjellander_webrtc
2017/01/19 08:10:03
Do we need to relax this? See comment in webrtc/mo
ehmaldonado_webrtc
2017/01/19 14:34:27
Done.
| |
| 105 sources = [ | 104 sources = [ |
| 106 "fft4g.c", | 105 "fft4g.c", |
| 107 "fft4g.h", | 106 "fft4g.h", |
| 108 "ring_buffer.c", | 107 "ring_buffer.c", |
| 109 "ring_buffer.h", | 108 "ring_buffer.h", |
| 110 "signal_processing/auto_corr_to_refl_coef.c", | 109 "signal_processing/auto_corr_to_refl_coef.c", |
| 111 "signal_processing/auto_correlation.c", | 110 "signal_processing/auto_correlation.c", |
| 112 "signal_processing/complex_fft_tables.h", | 111 "signal_processing/complex_fft_tables.h", |
| 113 "signal_processing/copy_set_operations.c", | 112 "signal_processing/copy_set_operations.c", |
| 114 "signal_processing/cross_correlation.c", | 113 "signal_processing/cross_correlation.c", |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 340 "//testing/gtest", | 339 "//testing/gtest", |
| 341 ] | 340 ] |
| 342 | 341 |
| 343 if (is_android) { | 342 if (is_android) { |
| 344 deps += [ "//testing/android/native_test:native_test_support" ] | 343 deps += [ "//testing/android/native_test:native_test_support" ] |
| 345 | 344 |
| 346 shard_timeout = 900 | 345 shard_timeout = 900 |
| 347 } | 346 } |
| 348 } | 347 } |
| 349 } | 348 } |
| OLD | NEW |