Mirko Bonadei 654320666d Including libyuv headers using fully qualified paths.
Using fully qualified paths to include libyuv headers allows WebRTC to
avoid to rely on the //third_party/libyuv:libyuv_config target to
set the -I compiler flag.

Today some WebRTC targets depend on //third_party/libyuv only to
include //third_party/libyuv:libyuv_config but with fully qualified
paths this should not be needed anymore.

A follow-up CL will remove //third_party/libyuv from some targets that
don't need it because they are not including libyuv headers.

Bug: webrtc:8605
Change-Id: Icec707ca761aaf2ea8088e7f7a05ddde0de2619a
No-Try: True
Reviewed-on: https://webrtc-review.googlesource.com/28220
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Magnus Flodman <mflodman@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21209}
2017-12-11 15:51:26 +00:00

45 lines
1.0 KiB
Python

include_rules = [
"+third_party/libjpeg",
"+third_party/libjpeg_turbo",
"+call",
"+common_audio",
"+common_video",
"+logging/rtc_event_log",
"+media/base",
"+modules/audio_coding",
"+modules/audio_device",
"+modules/audio_mixer",
"+modules/audio_processing",
"+modules/media_file",
"+modules/rtp_rtcp",
"+modules/video_capture",
"+modules/video_coding",
"+sdk",
"+system_wrappers",
"+voice_engine",
"+third_party/libyuv",
]
specific_include_rules = {
"gmock\.h": [
"+testing/gmock/include/gmock",
],
"gtest\.h": [
"+testing/gtest/include/gtest",
],
".*congestion_controller_feedback_fuzzer\.cc": [
"+modules/congestion_controller/include/receive_side_congestion_controller.h",
"+modules/pacing/packet_router.h",
"+modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h",
],
".*pseudotcp_parser_fuzzer\.cc": [
"+p2p/base/pseudotcp.h",
],
".*stun_parser_fuzzer\.cc": [
"+p2p/base/stun.h",
],
".*stun_validator_fuzzer\.cc": [
"+p2p/base/stun.h",
],
}