Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: webrtc/voice_engine/BUILD.gn

Issue 2343813003: Add voe_cmd_test to voice_engine/BUILD.gn (Closed)
Patch Set: rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/voice_engine/voice_engine.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
248 "//webrtc/system_wrappers",
249 "//webrtc/system_wrappers:system_wrappers_default",
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
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 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/voice_engine/voice_engine.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698