OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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 import("audio_coding/audio_coding.gni") | 10 import("audio_coding/audio_coding.gni") |
11 | 11 |
12 declare_args() { | 12 declare_args() { |
13 # Desktop capturer is supported only on Windows, OSX and Linux. | 13 # Desktop capturer is supported only on Windows, OSX and Linux. |
14 rtc_desktop_capture_supported = is_win || is_mac || is_linux | 14 rtc_desktop_capture_supported = is_win || is_mac || is_linux |
15 } | 15 } |
16 | 16 |
17 group("modules") { | 17 group("modules") { |
18 public_deps = [ | 18 public_deps = [ |
19 "audio_coding", | 19 "audio_coding", |
20 "audio_conference_mixer", | 20 "audio_conference_mixer", |
21 "audio_device", | 21 "audio_device", |
22 "audio_mixer:audio_mixer_impl", | 22 "audio_mixer", |
23 "audio_processing", | 23 "audio_processing", |
24 "bitrate_controller", | 24 "bitrate_controller", |
| 25 "congestion_controller", |
25 "desktop_capture", | 26 "desktop_capture", |
26 "media_file", | 27 "media_file", |
| 28 "pacing", |
| 29 "remote_bitrate_estimator", |
27 "rtp_rtcp", | 30 "rtp_rtcp", |
28 "utility", | 31 "utility", |
| 32 "video_capture", |
29 "video_coding", | 33 "video_coding", |
30 "video_processing", | 34 "video_processing", |
31 ] | 35 ] |
32 } | 36 } |
33 | 37 |
34 if (rtc_include_tests) { | 38 if (rtc_include_tests) { |
35 modules_tests_resources = [ | 39 modules_tests_resources = [ |
36 "//resources/audio_coding/testfile32kHz.pcm", | 40 "//resources/audio_coding/testfile32kHz.pcm", |
37 "//resources/audio_coding/teststereo32kHz.pcm", | 41 "//resources/audio_coding/teststereo32kHz.pcm", |
38 "//resources/foreman_cif.yuv", | 42 "//resources/foreman_cif.yuv", |
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 "/wd4373", # virtual function override. | 622 "/wd4373", # virtual function override. |
619 ] | 623 ] |
620 } | 624 } |
621 | 625 |
622 deps += [ | 626 deps += [ |
623 ":audio_network_adaptor_unittests", | 627 ":audio_network_adaptor_unittests", |
624 "..:webrtc_common", | 628 "..:webrtc_common", |
625 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. | 629 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. |
626 "../common_audio", | 630 "../common_audio", |
627 "../common_video", | 631 "../common_video", |
628 "../system_wrappers:system_wrappers", | 632 "../system_wrappers", |
629 "../test:rtp_test_utils", | 633 "../test:rtp_test_utils", |
630 "../test:test_common", | 634 "../test:test_common", |
631 "../test:test_support", | 635 "../test:test_support", |
632 "../test:test_support_main", | 636 "../test:test_support_main", |
633 "../test:video_test_common", | 637 "../test:video_test_common", |
634 "audio_coding", | 638 "audio_coding", |
635 "audio_coding:acm_receive_test", | 639 "audio_coding:acm_receive_test", |
636 "audio_coding:acm_send_test", | 640 "audio_coding:acm_send_test", |
637 "audio_coding:builtin_audio_decoder_factory", | 641 "audio_coding:builtin_audio_decoder_factory", |
638 "audio_coding:cng", | 642 "audio_coding:cng", |
639 "audio_coding:isac_fix", | 643 "audio_coding:isac_fix", |
640 "audio_coding:neteq", | 644 "audio_coding:neteq", |
641 "audio_coding:neteq_test_support", | 645 "audio_coding:neteq_test_support", |
642 "audio_coding:neteq_unittest_tools", | 646 "audio_coding:neteq_unittest_tools", |
643 "audio_coding:pcm16b", | 647 "audio_coding:pcm16b", |
644 "audio_coding:red", | 648 "audio_coding:red", |
645 "audio_coding:webrtc_opus", | 649 "audio_coding:webrtc_opus", |
646 "audio_conference_mixer", | 650 "audio_conference_mixer", |
647 "audio_device", | 651 "audio_device", |
648 "audio_mixer:audio_frame_manipulator", | 652 "audio_mixer", |
649 "audio_mixer:audio_mixer_impl", | |
650 "audio_processing", | 653 "audio_processing", |
651 "audio_processing:audioproc_test_utils", | 654 "audio_processing:audioproc_test_utils", |
652 "bitrate_controller", | 655 "bitrate_controller", |
653 "media_file", | 656 "media_file", |
654 "pacing", | 657 "pacing", |
655 "remote_bitrate_estimator", | 658 "remote_bitrate_estimator", |
656 "remote_bitrate_estimator:bwe_simulator_lib", | 659 "remote_bitrate_estimator:bwe_simulator_lib", |
657 "rtp_rtcp", | 660 "rtp_rtcp", |
658 "utility", | 661 "utility", |
659 "video_capture", | 662 "video_capture", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
735 "../test:test_common", | 738 "../test:test_common", |
736 "../test:test_support_main", | 739 "../test:test_support_main", |
737 "remote_bitrate_estimator:bwe_simulator_lib", | 740 "remote_bitrate_estimator:bwe_simulator_lib", |
738 "video_capture", | 741 "video_capture", |
739 "//testing/gmock", | 742 "//testing/gmock", |
740 "//testing/gtest", | 743 "//testing/gtest", |
741 "//third_party/gflags", | 744 "//third_party/gflags", |
742 ] | 745 ] |
743 } | 746 } |
744 } | 747 } |
OLD | NEW |