These headers have been moved to the right place in https://codereview.webrtc.org/3000253002 and in https://codereview.webrtc.org/3007553002/ we stopped to depend on them internally. This CL tries to remove the stubs from the root directory so we can unblock crbug.com/611808. BUG=webrtc:8107 Review-Url: https://codereview.webrtc.org/3011513002 Cr-Commit-Position: refs/heads/master@{#19575}
36 lines
976 B
Python
36 lines
976 B
Python
# Define rules for which include paths are allowed in our source.
|
|
include_rules = [
|
|
# Base is only used to build Android APK tests and may not be referenced by
|
|
# WebRTC production code.
|
|
"-base",
|
|
"-chromium",
|
|
"+external/webrtc/webrtc", # Android platform build.
|
|
"+gflags",
|
|
"+libyuv",
|
|
"-webrtc", # Has to be disabled; otherwise all dirs below will be allowed.
|
|
# Individual headers that will be moved out of here, see webrtc:4243.
|
|
"+webrtc/common_types.h",
|
|
"+webrtc/config.h",
|
|
"+webrtc/transport.h",
|
|
"+webrtc/typedefs.h",
|
|
"+webrtc/voice_engine_configurations.h",
|
|
|
|
"+WebRTC",
|
|
"+webrtc/api",
|
|
"+webrtc/base",
|
|
"+webrtc/modules/include",
|
|
"+webrtc/rtc_base",
|
|
"+webrtc/test",
|
|
"+webrtc/rtc_tools",
|
|
]
|
|
|
|
# The below rules will be removed when webrtc:4243 is fixed.
|
|
specific_include_rules = {
|
|
"video_receive_stream\.h": [
|
|
"+webrtc/call/video_receive_stream.h",
|
|
],
|
|
"video_send_stream\.h": [
|
|
"+webrtc/call/video_send_stream.h",
|
|
],
|
|
}
|