| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "wav_file.h", | 56 "wav_file.h", |
| 57 "wav_header.cc", | 57 "wav_header.cc", |
| 58 "wav_header.h", | 58 "wav_header.h", |
| 59 "window_generator.cc", | 59 "window_generator.cc", |
| 60 "window_generator.h", | 60 "window_generator.h", |
| 61 ] | 61 ] |
| 62 | 62 |
| 63 deps = [ | 63 deps = [ |
| 64 ":sinc_resampler", | 64 ":sinc_resampler", |
| 65 "..:webrtc_common", | 65 "..:webrtc_common", |
| 66 "../api:optional", |
| 66 "../rtc_base:gtest_prod", | 67 "../rtc_base:gtest_prod", |
| 67 "../rtc_base:rtc_base_approved", | 68 "../rtc_base:rtc_base_approved", |
| 68 "../system_wrappers", | 69 "../system_wrappers", |
| 69 ] | 70 ] |
| 70 public_deps = [ | 71 public_deps = [ |
| 71 ":common_audio_c", | 72 ":common_audio_c", |
| 72 ] | 73 ] |
| 73 | 74 |
| 74 defines = [] | 75 defines = [] |
| 75 if (rtc_use_openmax_dl) { | 76 if (rtc_use_openmax_dl) { |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 "//testing/gtest", | 410 "//testing/gtest", |
| 410 ] | 411 ] |
| 411 | 412 |
| 412 if (is_android) { | 413 if (is_android) { |
| 413 deps += [ "//testing/android/native_test:native_test_support" ] | 414 deps += [ "//testing/android/native_test:native_test_support" ] |
| 414 | 415 |
| 415 shard_timeout = 900 | 416 shard_timeout = 900 |
| 416 } | 417 } |
| 417 } | 418 } |
| 418 } | 419 } |
| OLD | NEW |