From 4ecd9700eec58095db1934fbadcdceebdd6288f8 Mon Sep 17 00:00:00 2001 From: kjellander Date: Tue, 27 Sep 2016 01:11:18 -0700 Subject: [PATCH] GN: Fix incorrect include_dir for video_coding on iOS When rtc_build_libyuv=false an incorrect code path is surfaced in GN. BUG=webrtc:6412 NOTRY=True TESTED=gn gen out/foo --args='rtc_build_libyuv=false target_os="ios"' Review-Url: https://codereview.webrtc.org/2375603002 Cr-Commit-Position: refs/heads/master@{#14392} --- webrtc/modules/video_coding/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/modules/video_coding/BUILD.gn b/webrtc/modules/video_coding/BUILD.gn index d9b392d77a..21539a2a8f 100644 --- a/webrtc/modules/video_coding/BUILD.gn +++ b/webrtc/modules/video_coding/BUILD.gn @@ -218,7 +218,7 @@ if (is_ios) { ] } else { # Need to add a directory normally exported by libyuv. - include_dirs += [ "$rtc_libyuv_dir/include" ] + include_dirs = [ "$rtc_libyuv_dir/include" ] } } }