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 | 10 |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
229 ] | 229 ] |
230 } | 230 } |
231 | 231 |
232 if (is_clang) { | 232 if (is_clang) { |
233 # Suppress warnings from Chrome's Clang plugins. | 233 # Suppress warnings from Chrome's Clang plugins. |
234 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 234 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
235 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 235 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
236 } | 236 } |
237 } | 237 } |
238 | 238 |
239 rtc_executable("voe_cmd_test") { | |
240 testonly = true | |
241 | |
242 deps = [ | |
243 ":channel_transport", | |
244 ":voice_engine", | |
245 "//testing/gtest", | |
246 "//third_party/gflags", | |
247 "//webrtc/:rtc_event_log", | |
kjellander_webrtc
2016/09/15 14:05:31
Write this as //webrtc:rtc_event_log
the sun
2016/09/15 14:15:25
Done.
| |
248 "//webrtc/system_wrappers", | |
249 "//webrtc/system_wrappers/:system_wrappers_default", | |
kjellander_webrtc
2016/09/15 14:05:31
Same principle here and below.
the sun
2016/09/15 14:15:25
Done.
| |
250 "//webrtc/test/:test_support", | |
251 ] | |
252 | |
253 sources = [ | |
254 "test/cmd_test/voe_cmd_test.cc", | |
255 ] | |
256 | |
257 if (is_clang) { | |
258 # Suppress warnings from Chrome's Clang plugins. | |
259 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | |
260 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | |
261 } | |
262 } | |
263 | |
239 if (!is_ios) { | 264 if (!is_ios) { |
240 rtc_executable("voe_auto_test") { | 265 rtc_executable("voe_auto_test") { |
241 testonly = true | 266 testonly = true |
242 | 267 |
243 deps = [ | 268 deps = [ |
244 ":channel_transport", | 269 ":channel_transport", |
245 ":voice_engine", | 270 ":voice_engine", |
246 "//testing/gmock", | 271 "//testing/gmock", |
247 "//testing/gtest", | 272 "//testing/gtest", |
248 "//third_party/gflags", | 273 "//third_party/gflags", |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
323 } | 348 } |
324 | 349 |
325 if (is_clang) { | 350 if (is_clang) { |
326 # Suppress warnings from Chrome's Clang plugins. | 351 # Suppress warnings from Chrome's Clang plugins. |
327 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 352 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
328 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 353 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
329 } | 354 } |
330 } | 355 } |
331 } | 356 } |
332 } | 357 } |
OLD | NEW |