
These files are required when implementing tests based on the test fixture, and should be exposed as part of the test api. This CL also removes a usage of stringstream and fixes some chromium-style lint issues. Bug: webrtc:8982, webrtc:163 Change-Id: I132aea0da79a79587887f21897236fc9802b7574 Reviewed-on: https://webrtc-review.googlesource.com/74586 Commit-Queue: Kári Helgason <kthelgason@webrtc.org> Reviewed-by: Rasmus Brandt <brandtr@webrtc.org> Reviewed-by: Fredrik Solenberg <solenberg@webrtc.org> Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23346}
29 lines
836 B
Python
29 lines
836 B
Python
include_rules = [
|
|
"+third_party/libyuv",
|
|
"+common_video",
|
|
"+media",
|
|
"+p2p",
|
|
"+pc",
|
|
"+logging/rtc_event_log/rtc_event_log_factory_interface.h",
|
|
"+modules/audio_processing/include",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
# Needed because AudioEncoderOpus is in the wrong place for
|
|
# backwards compatibilty reasons. See
|
|
# https://bugs.chromium.org/p/webrtc/issues/detail?id=7847
|
|
"audio_encoder_opus\.h": [
|
|
"+modules/audio_coding/codecs/opus/audio_encoder_opus.h",
|
|
],
|
|
|
|
# We allow .cc files in webrtc/api/ to #include a bunch of stuff
|
|
# that's off-limits for the .h files. That's because .h files leak
|
|
# their #includes to whoever's #including them, but .cc files do not
|
|
# since no one #includes them.
|
|
".*\.cc": [
|
|
"+modules/audio_coding",
|
|
"+modules/audio_processing",
|
|
"+modules/video_coding",
|
|
],
|
|
}
|