Fixes for building without SW codecs after GN changes.

After https://webrtc-review.googlesource.com/c/src/+/49060 changed the
gn check config for sdk/.

Add nogncheck for some conditionally imported headers.

Bug: webrtc:7925
Change-Id: I57499e990332636991563c6f550a7c9154e7c2ee
Reviewed-on: https://webrtc-review.googlesource.com/54820
Reviewed-by: Kári Helgason <kthelgason@webrtc.org>
Commit-Queue: Anders Carlsson <andersc@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22083}
This commit is contained in:
Anders Carlsson
2018-02-19 11:46:21 +01:00
committed by Commit Bot
parent e7dba00e31
commit 0bc9c7d58a
2 changed files with 4 additions and 4 deletions

View File

@ -12,9 +12,9 @@
#import "WebRTC/RTCVideoCodecH264.h"
#if defined(USE_BUILTIN_SW_CODECS)
#import "WebRTC/RTCVideoDecoderVP8.h"
#import "WebRTC/RTCVideoDecoderVP8.h" // nogncheck
#if !defined(RTC_DISABLE_VP9)
#import "WebRTC/RTCVideoDecoderVP9.h"
#import "WebRTC/RTCVideoDecoderVP9.h" // nogncheck
#endif
#endif