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/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 configs -= [ "//build/config/clang:find_bad_constructs" ] | 174 configs -= [ "//build/config/clang:find_bad_constructs" ] |
175 } | 175 } |
176 } | 176 } |
177 | 177 |
178 if (!is_ios) { | 178 if (!is_ios) { |
179 executable("voe_auto_test") { | 179 executable("voe_auto_test") { |
180 testonly = true | 180 testonly = true |
181 | 181 |
182 deps = [ | 182 deps = [ |
183 ":voice_engine", | 183 ":voice_engine", |
| 184 "//build/config/sanitizers:deps", |
184 "//testing/gmock", | 185 "//testing/gmock", |
185 "//testing/gtest", | 186 "//testing/gtest", |
186 "//third_party/gflags", | 187 "//third_party/gflags", |
187 "//webrtc/:rtc_event_log", | 188 "//webrtc/:rtc_event_log", |
188 "//webrtc/modules/video_capture", | 189 "//webrtc/modules/video_capture", |
189 "//webrtc/system_wrappers", | 190 "//webrtc/system_wrappers", |
190 "//webrtc/system_wrappers/:system_wrappers_default", | 191 "//webrtc/system_wrappers/:system_wrappers_default", |
191 "//webrtc/test/:channel_transport", | 192 "//webrtc/test/:channel_transport", |
192 "//webrtc/test/:test_common", | 193 "//webrtc/test/:test_common", |
193 "//webrtc/test/:test_support", | 194 "//webrtc/test/:test_support", |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 } | 263 } |
263 | 264 |
264 if (is_clang) { | 265 if (is_clang) { |
265 # Suppress warnings from Chrome's Clang plugins. | 266 # Suppress warnings from Chrome's Clang plugins. |
266 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 267 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
267 configs -= [ "//build/config/clang:find_bad_constructs" ] | 268 configs -= [ "//build/config/clang:find_bad_constructs" ] |
268 } | 269 } |
269 } | 270 } |
270 } | 271 } |
271 } | 272 } |
OLD | NEW |