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("../webrtc.gni") | 10 import("../webrtc.gni") |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 } | 197 } |
198 | 198 |
199 if (is_win) { | 199 if (is_win) { |
200 cflags = [ "/wd4334" ] # Ignore warning on shift operator promotion. | 200 cflags = [ "/wd4334" ] # Ignore warning on shift operator promotion. |
201 } | 201 } |
202 | 202 |
203 public_configs = [ ":common_audio_config" ] | 203 public_configs = [ ":common_audio_config" ] |
204 deps = [ | 204 deps = [ |
205 ":common_audio_cc", | 205 ":common_audio_cc", |
206 "..:webrtc_common", | 206 "..:webrtc_common", |
| 207 "../base:compile_assert_c", |
207 "../base:rtc_base_approved", | 208 "../base:rtc_base_approved", |
208 "../system_wrappers:system_wrappers", | 209 "../system_wrappers:system_wrappers", |
209 ] | 210 ] |
210 } | 211 } |
211 | 212 |
212 rtc_source_set("common_audio_cc") { | 213 rtc_source_set("common_audio_cc") { |
213 visibility = [ ":*" ] # Only targets in this file can depend on this. | 214 visibility = [ ":*" ] # Only targets in this file can depend on this. |
214 sources = [ | 215 sources = [ |
215 "signal_processing/dot_product_with_scale.cc", | 216 "signal_processing/dot_product_with_scale.cc", |
216 "signal_processing/dot_product_with_scale.h", | 217 "signal_processing/dot_product_with_scale.h", |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 "//testing/gtest", | 404 "//testing/gtest", |
404 ] | 405 ] |
405 | 406 |
406 if (is_android) { | 407 if (is_android) { |
407 deps += [ "//testing/android/native_test:native_test_support" ] | 408 deps += [ "//testing/android/native_test:native_test_support" ] |
408 | 409 |
409 shard_timeout = 900 | 410 shard_timeout = 900 |
410 } | 411 } |
411 } | 412 } |
412 } | 413 } |
OLD | NEW |