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

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

Issue 2998923002: Use SingleThreadedTaskQueue in DirectTransport (Closed)
Patch Set: Appease win_msvc_rel. Created 3 years, 4 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 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 "../modules/rtp_rtcp", 280 "../modules/rtp_rtcp",
281 "../rtc_base:rtc_base_approved", 281 "../rtc_base:rtc_base_approved",
282 "../system_wrappers", 282 "../system_wrappers",
283 ] 283 ]
284 sources = [ 284 sources = [
285 "fake_audio_device_unittest.cc", 285 "fake_audio_device_unittest.cc",
286 "fake_network_pipe_unittest.cc", 286 "fake_network_pipe_unittest.cc",
287 "frame_generator_unittest.cc", 287 "frame_generator_unittest.cc",
288 "rtp_file_reader_unittest.cc", 288 "rtp_file_reader_unittest.cc",
289 "rtp_file_writer_unittest.cc", 289 "rtp_file_writer_unittest.cc",
290 "single_threaded_task_queue_unittest.cc",
290 "testsupport/always_passing_unittest.cc", 291 "testsupport/always_passing_unittest.cc",
291 "testsupport/metrics/video_metrics_unittest.cc", 292 "testsupport/metrics/video_metrics_unittest.cc",
292 "testsupport/packet_reader_unittest.cc", 293 "testsupport/packet_reader_unittest.cc",
293 "testsupport/perf_test_unittest.cc", 294 "testsupport/perf_test_unittest.cc",
294 "testsupport/test_output_unittest.cc", 295 "testsupport/test_output_unittest.cc",
295 "testsupport/y4m_frame_writer_unittest.cc", 296 "testsupport/y4m_frame_writer_unittest.cc",
296 "testsupport/yuv_frame_reader_unittest.cc", 297 "testsupport/yuv_frame_reader_unittest.cc",
297 "testsupport/yuv_frame_writer_unittest.cc", 298 "testsupport/yuv_frame_writer_unittest.cc",
298 ] 299 ]
299 300
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 if (!build_with_chromium && is_clang) { 395 if (!build_with_chromium && is_clang) {
395 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 396 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
396 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 397 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
397 } 398 }
398 deps = [ 399 deps = [
399 "..:webrtc_common", 400 "..:webrtc_common",
400 "../api:transport_api", 401 "../api:transport_api",
401 "../call", 402 "../call",
402 "../modules/rtp_rtcp", 403 "../modules/rtp_rtcp",
403 "../rtc_base:rtc_base_approved", 404 "../rtc_base:rtc_base_approved",
405 "../rtc_base:sequenced_task_checker",
404 "../system_wrappers", 406 "../system_wrappers",
405 ] 407 ]
408 public_deps = [
409 ":single_threaded_task_queue",
410 ]
411 }
412
413 rtc_source_set("single_threaded_task_queue") {
414 testonly = true
415 sources = [
416 "single_threaded_task_queue.cc",
417 "single_threaded_task_queue.h",
418 ]
419 deps = [
420 "../rtc_base:rtc_base_approved",
421 ]
406 } 422 }
407 423
408 rtc_source_set("fake_audio_device") { 424 rtc_source_set("fake_audio_device") {
409 testonly = true 425 testonly = true
410 sources = [ 426 sources = [
411 "fake_audio_device.cc", 427 "fake_audio_device.cc",
412 "fake_audio_device.h", 428 "fake_audio_device.h",
413 ] 429 ]
414 if (!build_with_chromium && is_clang) { 430 if (!build_with_chromium && is_clang) {
415 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 431 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 java_files = [ 623 java_files = [
608 "android/org/webrtc/native_test/RTCNativeUnitTest.java", 624 "android/org/webrtc/native_test/RTCNativeUnitTest.java",
609 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", 625 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java",
610 ] 626 ]
611 deps = [ 627 deps = [
612 "../rtc_base:base_java", 628 "../rtc_base:base_java",
613 "//testing/android/native_test:native_test_java", 629 "//testing/android/native_test:native_test_java",
614 ] 630 ]
615 } 631 }
616 } 632 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698