OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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("../webrtc.gni") | 9 import("../webrtc.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 "test/low_bandwidth_audio_test.cc", | 93 "test/low_bandwidth_audio_test.cc", |
94 "test/low_bandwidth_audio_test.h", | 94 "test/low_bandwidth_audio_test.h", |
95 ] | 95 ] |
96 | 96 |
97 deps = [ | 97 deps = [ |
98 "../common_audio", | 98 "../common_audio", |
99 "../system_wrappers", | 99 "../system_wrappers", |
100 "../test:fake_audio_device", | 100 "../test:fake_audio_device", |
101 "../test:test_common", | 101 "../test:test_common", |
102 "../test:test_main", | 102 "../test:test_main", |
| 103 "//third_party/gflags", |
103 ] | 104 ] |
104 if (is_android) { | 105 if (is_android) { |
105 deps += [ "//testing/android/native_test:native_test_native_code" ] | 106 deps += [ "//testing/android/native_test:native_test_native_code" ] |
106 } | 107 } |
107 | 108 |
108 data = [ | 109 data = [ |
109 "//resources/voice_engine/audio_tiny16.wav", | 110 "//resources/voice_engine/audio_tiny16.wav", |
| 111 "//resources/voice_engine/audio_tiny48.wav", |
110 ] | 112 ] |
111 | 113 |
112 if (!build_with_chromium && is_clang) { | 114 if (!build_with_chromium && is_clang) { |
113 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) | 115 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) |
114 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 116 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
115 } | 117 } |
116 } | 118 } |
117 } | 119 } |
118 } | 120 } |
OLD | NEW |