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

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

Issue 3008273002: Replace voe_conference_test. (Closed)
Patch Set: rebase Created 3 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
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("../webrtc.gni") 9 import("../webrtc.gni")
10 10
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 "../system_wrappers/:system_wrappers_default", 259 "../system_wrappers/:system_wrappers_default",
260 "../test/:test_common", 260 "../test/:test_common",
261 "../test/:test_support", 261 "../test/:test_support",
262 "../test/:video_test_common", 262 "../test/:video_test_common",
263 "//testing/gmock", 263 "//testing/gmock",
264 "//testing/gtest", 264 "//testing/gtest",
265 ] 265 ]
266 266
267 sources = [ 267 sources = [
268 "test/auto_test/automated_mode.cc", 268 "test/auto_test/automated_mode.cc",
269 "test/auto_test/fakes/conference_transport.cc",
270 "test/auto_test/fakes/conference_transport.h",
271 "test/auto_test/fakes/loudest_filter.cc",
272 "test/auto_test/fakes/loudest_filter.h",
273 "test/auto_test/fixtures/after_initialization_fixture.cc", 269 "test/auto_test/fixtures/after_initialization_fixture.cc",
274 "test/auto_test/fixtures/after_initialization_fixture.h", 270 "test/auto_test/fixtures/after_initialization_fixture.h",
275 "test/auto_test/fixtures/after_streaming_fixture.cc", 271 "test/auto_test/fixtures/after_streaming_fixture.cc",
276 "test/auto_test/fixtures/after_streaming_fixture.h", 272 "test/auto_test/fixtures/after_streaming_fixture.h",
277 "test/auto_test/fixtures/before_initialization_fixture.cc", 273 "test/auto_test/fixtures/before_initialization_fixture.cc",
278 "test/auto_test/fixtures/before_initialization_fixture.h", 274 "test/auto_test/fixtures/before_initialization_fixture.h",
279 "test/auto_test/fixtures/before_streaming_fixture.cc", 275 "test/auto_test/fixtures/before_streaming_fixture.cc",
280 "test/auto_test/fixtures/before_streaming_fixture.h", 276 "test/auto_test/fixtures/before_streaming_fixture.h",
281 "test/auto_test/standard/codec_before_streaming_test.cc", 277 "test/auto_test/standard/codec_before_streaming_test.cc",
282 "test/auto_test/standard/codec_test.cc", 278 "test/auto_test/standard/codec_test.cc",
283 "test/auto_test/standard/dtmf_test.cc", 279 "test/auto_test/standard/dtmf_test.cc",
284 "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc", 280 "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc",
285 "test/auto_test/standard/rtp_rtcp_extensions.cc", 281 "test/auto_test/standard/rtp_rtcp_extensions.cc",
286 "test/auto_test/standard/rtp_rtcp_test.cc", 282 "test/auto_test/standard/rtp_rtcp_test.cc",
287 "test/auto_test/voe_conference_test.cc",
288 "test/auto_test/voe_standard_test.cc", 283 "test/auto_test/voe_standard_test.cc",
289 "test/auto_test/voe_standard_test.h", 284 "test/auto_test/voe_standard_test.h",
290 "test/auto_test/voe_test_defines.h", 285 "test/auto_test/voe_test_defines.h",
291 ] 286 ]
292 287
293 defines = [] 288 defines = []
294 289
295 if (rtc_enable_protobuf) { 290 if (rtc_enable_protobuf) {
296 defines = [ "ENABLE_RTC_EVENT_LOG" ] 291 defines = [ "ENABLE_RTC_EVENT_LOG" ]
297 } 292 }
298 293
299 if (is_win) { 294 if (is_win) {
300 defines += [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ] 295 defines += [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ]
301 296
302 cflags = [ 297 cflags = [
303 "/wd4267", # size_t to int truncation. 298 "/wd4267", # size_t to int truncation.
304 "/wd4373", # Virtual function override. 299 "/wd4373", # Virtual function override.
305 # TODO(kjellander): Bug 261: fix this warning. 300 # TODO(kjellander): Bug 261: fix this warning.
306 ] 301 ]
307 } 302 }
308 303
309 if (!build_with_chromium && is_clang) { 304 if (!build_with_chromium && is_clang) {
310 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 305 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
311 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 306 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
312 } 307 }
313 } 308 }
314 } 309 }
315 } 310 }
OLDNEW
« no previous file with comments | « webrtc/test/call_test.cc ('k') | webrtc/voice_engine/test/auto_test/fakes/conference_transport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698