mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

Since media/ and pc/ both have to use this, and both depend on call/, this seems to be the right place to put it. Also factor out the interface that media will use in a separate interface class. Bug: webrtc:360058654 Change-Id: I34acbecc618f23e19542ce4b0110d0e8ed9e55ee Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/361281 Commit-Queue: Harald Alvestrand <hta@webrtc.org> Reviewed-by: Florent Castelli <orphis@webrtc.org> Auto-Submit: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/main@{#42933}
73 lines
1.7 KiB
Python
73 lines
1.7 KiB
Python
include_rules = [
|
|
"+audio",
|
|
"+logging/rtc_event_log",
|
|
"+modules/async_audio_processing",
|
|
"+modules/audio_coding",
|
|
"+modules/audio_device",
|
|
"+modules/audio_mixer",
|
|
"+modules/audio_processing",
|
|
"+modules/bitrate_controller",
|
|
"+modules/congestion_controller",
|
|
"+modules/video_coding",
|
|
"+modules/pacing",
|
|
"+modules/rtp_rtcp",
|
|
"+modules/utility",
|
|
"+system_wrappers",
|
|
"+video",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
"video_receive_stream\.h": [
|
|
"+common_video/frame_counts.h",
|
|
],
|
|
"video_send_stream\.h": [
|
|
"+common_video",
|
|
],
|
|
"rtp_transport_controller_send_interface\.h": [
|
|
"+common_video/frame_counts.h",
|
|
],
|
|
"call_perf_tests\.cc": [
|
|
"+media/engine",
|
|
],
|
|
"simulated_network\.h": [
|
|
"+test/network/simulated_network.h",
|
|
],
|
|
"rtp_payload_params\.cc": [
|
|
"+common_video/generic_frame_descriptor",
|
|
],
|
|
"rtp_payload_params\.h": [
|
|
"+common_video/generic_frame_descriptor",
|
|
],
|
|
"rtp_payload_params_unittest\.cc": [
|
|
"+common_video/generic_frame_descriptor",
|
|
],
|
|
"rtp_video_sender\.cc": [
|
|
"+common_video/frame_counts.h",
|
|
"+common_video/generic_frame_descriptor",
|
|
],
|
|
"rtp_video_sender.h": [
|
|
"+common_video/frame_counts.h",
|
|
],
|
|
"rtp_video_sender_unittest.cc": [
|
|
"+common_video/frame_counts.h",
|
|
"+common_video/generic_frame_descriptor",
|
|
],
|
|
"payload_type\.h": [
|
|
"+media/base/codec.h",
|
|
],
|
|
"payload_type_picker\.h": [
|
|
"+media/base/codec.h",
|
|
"+media/base/media_constants.h",
|
|
],
|
|
"payload_type_picker\.cc": [
|
|
"+media/base/codec.h",
|
|
"+media/base/media_constants.h",
|
|
],
|
|
"payload_type_picker_unittest\.cc": [
|
|
"+media/base/codec.h",
|
|
"+media/base/media_constants.h",
|
|
],
|
|
"call\.cc": [
|
|
"+media/base/codec.h",
|
|
]
|
|
}
|