I updated some dependency enforcement rules to allow examples and pc to depend on common_video. I reckoned depending on common_video is not controversial when they already dependend on media/base, which is a lower-level abstraction. Bug: webrtc:6828 Change-Id: I77dbeb10187b4e70dda1d873a29994fa76070758 Reviewed-on: https://webrtc-review.googlesource.com/34187 Reviewed-by: Stefan Holmer <stefan@webrtc.org> Commit-Queue: Patrik Höglund <phoglund@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21495}
36 lines
834 B
Python
36 lines
834 B
Python
include_rules = [
|
|
"+third_party/libsrtp",
|
|
"+api",
|
|
"+call",
|
|
"+common_video",
|
|
"+logging/rtc_event_log",
|
|
"+logging/rtc_event_log",
|
|
"+media",
|
|
"+modules/audio_device",
|
|
"+modules/audio_processing",
|
|
"+modules/rtp_rtcp",
|
|
"+modules/video_coding",
|
|
"+modules/video_render",
|
|
"+p2p",
|
|
"+system_wrappers",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
"androidtestinitializer\.cc": [
|
|
"+base/android", # Allowed only for Android tests.
|
|
"+voice_engine",
|
|
],
|
|
"srtpfilter_unittest\.cc": [
|
|
"+crypto",
|
|
],
|
|
|
|
# TODO(ossu): Remove these exceptions when audio_encoder_factory.h
|
|
# has moved to api/.
|
|
"peerconnectionfactory\.cc": [
|
|
"+modules/audio_coding/codecs/builtin_audio_encoder_factory.h",
|
|
],
|
|
"peerconnectioninterface_unittest\.cc": [
|
|
"+modules/audio_coding/codecs/builtin_audio_encoder_factory.h",
|
|
],
|
|
}
|