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

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

Issue 2998923002: Use SingleThreadedTaskQueue in DirectTransport (Closed)
Patch Set: Response to nisse's CR. 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
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",
404 "../system_wrappers", 405 "../system_wrappers",
405 ] 406 ]
407 public_deps = [
408 ":single_threaded_task_queue",
409 ]
410 }
411
412 rtc_source_set("single_threaded_task_queue") {
413 testonly = true
414 sources = [
415 "single_threaded_task_queue.cc",
416 "single_threaded_task_queue.h",
417 ]
418 deps = [
419 "../rtc_base:rtc_base_approved",
420 ]
406 } 421 }
407 422
408 rtc_source_set("fake_audio_device") { 423 rtc_source_set("fake_audio_device") {
409 testonly = true 424 testonly = true
410 sources = [ 425 sources = [
411 "fake_audio_device.cc", 426 "fake_audio_device.cc",
412 "fake_audio_device.h", 427 "fake_audio_device.h",
413 ] 428 ]
414 if (!build_with_chromium && is_clang) { 429 if (!build_with_chromium && is_clang) {
415 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 430 # 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 = [ 622 java_files = [
608 "android/org/webrtc/native_test/RTCNativeUnitTest.java", 623 "android/org/webrtc/native_test/RTCNativeUnitTest.java",
609 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", 624 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java",
610 ] 625 ]
611 deps = [ 626 deps = [
612 "../rtc_base:base_java", 627 "../rtc_base:base_java",
613 "//testing/android/native_test:native_test_java", 628 "//testing/android/native_test:native_test_java",
614 ] 629 ]
615 } 630 }
616 } 631 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698