Enable include check for webrtc_h264 target

BUG=webrtc:7242,webrtc:6828

Review-Url: https://codereview.webrtc.org/2718143002
Cr-Commit-Position: refs/heads/master@{#16888}
This commit is contained in:
magjed
2017-02-28 00:28:04 -08:00
committed by Commit bot
parent f9495c3199
commit 21d110fe4e

View File

@ -143,16 +143,6 @@ rtc_static_library("video_coding_utility") {
}
rtc_static_library("webrtc_h264") {
# TODO(ehmaldonado): Remove (bugs.webrtc.org/6828)
# Errors on cyclic dependency if enabled:
# //webrtc/call:call ->
# //webrtc/video:video ->
# //webrtc/modules/video_coding:video_coding ->
# //webrtc/modules/video_coding:webrtc_h264 ->
# //webrtc/media:rtc_media ->
# //webrtc/call:call
check_includes = false
sources = [
"codecs/h264/h264.cc",
"codecs/h264/include/h264.h",
@ -167,6 +157,7 @@ rtc_static_library("webrtc_h264") {
deps = [
":video_coding_utility",
"../../base:rtc_base_approved",
"../../media:rtc_media_base",
"../../system_wrappers",
]