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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 "test/low_bandwidth_audio_test.cc", | 105 "test/low_bandwidth_audio_test.cc", |
106 "test/low_bandwidth_audio_test.h", | 106 "test/low_bandwidth_audio_test.h", |
107 ] | 107 ] |
108 | 108 |
109 deps = [ | 109 deps = [ |
110 "../common_audio", | 110 "../common_audio", |
111 "../system_wrappers", | 111 "../system_wrappers", |
112 "../test:fake_audio_device", | 112 "../test:fake_audio_device", |
113 "../test:test_common", | 113 "../test:test_common", |
114 "../test:test_main", | 114 "../test:test_main", |
| 115 "//testing/gmock", |
| 116 "//testing/gtest", |
115 "//third_party/gflags", | 117 "//third_party/gflags", |
116 ] | 118 ] |
117 if (is_android) { | 119 if (is_android) { |
118 deps += [ "//testing/android/native_test:native_test_native_code" ] | 120 deps += [ "//testing/android/native_test:native_test_native_code" ] |
119 } | 121 } |
120 | 122 |
121 data = [ | 123 data = [ |
122 "//resources/voice_engine/audio_tiny16.wav", | 124 "//resources/voice_engine/audio_tiny16.wav", |
123 "//resources/voice_engine/audio_tiny48.wav", | 125 "//resources/voice_engine/audio_tiny48.wav", |
| 126 "//resources/voice_engine/audio_dtx16.wav", |
124 ] | 127 ] |
125 | 128 |
126 if (!build_with_chromium && is_clang) { | 129 if (!build_with_chromium && is_clang) { |
127 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) | 130 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) |
128 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 131 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
129 } | 132 } |
130 } | 133 } |
131 } | 134 } |
132 } | 135 } |
OLD | NEW |