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

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

Issue 3000253002: Move video send/receive stream headers to webrtc/call. (Closed)
Patch Set: Headers moved to 'webrtc/call' instead of 'webrtc/api'. 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 "video_capturer.h", 52 "video_capturer.h",
53 "video_codec_settings.h", 53 "video_codec_settings.h",
54 ] 54 ]
55 55
56 if (!build_with_chromium && is_clang) { 56 if (!build_with_chromium && is_clang) {
57 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 57 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
58 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 58 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
59 } 59 }
60 60
61 deps = [ 61 deps = [
62 "..:video_stream_api",
63 "..:webrtc_common", 62 "..:webrtc_common",
64 "../api/video_codecs:video_codecs_api", 63 "../api/video_codecs:video_codecs_api",
64 "../call:video_stream_api",
65 "../common_video", 65 "../common_video",
66 "../media:rtc_media_base", 66 "../media:rtc_media_base",
67 "../modules/video_capture:video_capture_module", 67 "../modules/video_capture:video_capture_module",
68 "../rtc_base:rtc_base_approved", 68 "../rtc_base:rtc_base_approved",
69 "../rtc_base:rtc_task_queue", 69 "../rtc_base:rtc_task_queue",
70 "../system_wrappers", 70 "../system_wrappers",
71 ] 71 ]
72 } 72 }
73 73
74 rtc_source_set("rtp_test_utils") { 74 rtc_source_set("rtp_test_utils") {
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 465 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
466 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 466 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
467 } 467 }
468 468
469 deps = [ 469 deps = [
470 ":direct_transport", 470 ":direct_transport",
471 ":fake_audio_device", 471 ":fake_audio_device",
472 ":rtp_test_utils", 472 ":rtp_test_utils",
473 ":test_support", 473 ":test_support",
474 ":video_test_common", 474 ":video_test_common",
475 "..:video_stream_api",
476 "..:webrtc_common", 475 "..:webrtc_common",
477 "../api:transport_api", 476 "../api:transport_api",
478 "../api:video_frame_api", 477 "../api:video_frame_api",
479 "../api/audio_codecs:builtin_audio_decoder_factory", 478 "../api/audio_codecs:builtin_audio_decoder_factory",
480 "../api/audio_codecs:builtin_audio_encoder_factory", 479 "../api/audio_codecs:builtin_audio_encoder_factory",
481 "../api/video_codecs:video_codecs_api", 480 "../api/video_codecs:video_codecs_api",
482 "../audio", 481 "../audio",
483 "../call", 482 "../call",
484 "../call:rtp_sender", 483 "../call:rtp_sender",
484 "../call:video_stream_api",
485 "../common_video", 485 "../common_video",
486 "../logging:rtc_event_log_api", 486 "../logging:rtc_event_log_api",
487 "../modules/audio_device:mock_audio_device", 487 "../modules/audio_device:mock_audio_device",
488 "../modules/audio_mixer:audio_mixer_impl", 488 "../modules/audio_mixer:audio_mixer_impl",
489 "../modules/audio_processing", 489 "../modules/audio_processing",
490 "../modules/rtp_rtcp", 490 "../modules/rtp_rtcp",
491 "../modules/rtp_rtcp:mock_rtp_rtcp", 491 "../modules/rtp_rtcp:mock_rtp_rtcp",
492 "../modules/video_coding:webrtc_h264", 492 "../modules/video_coding:webrtc_h264",
493 "../modules/video_coding:webrtc_vp8", 493 "../modules/video_coding:webrtc_vp8",
494 "../modules/video_coding:webrtc_vp9", 494 "../modules/video_coding:webrtc_vp9",
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 java_files = [ 607 java_files = [
608 "android/org/webrtc/native_test/RTCNativeUnitTest.java", 608 "android/org/webrtc/native_test/RTCNativeUnitTest.java",
609 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", 609 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java",
610 ] 610 ]
611 deps = [ 611 deps = [
612 "../rtc_base:base_java", 612 "../rtc_base:base_java",
613 "//testing/android/native_test:native_test_java", 613 "//testing/android/native_test:native_test_java",
614 ] 614 ]
615 } 615 }
616 } 616 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698