From 0a410ce8cec67135b91e68e92bd35c18ac25250f Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Wed, 18 Jul 2018 17:34:10 +0200 Subject: [PATCH] Clean up unneeded includes in common_video/BUILD.gn. WebRTC internal headers are always included starting from the root (e.g. #include "common_video/..."), so there is no need to specify the include_dirs removed by this CL. Bug: webrtc:9538 Change-Id: I9c10d419d1ec51502281329dfa5b6f68643b27f1 Reviewed-on: https://webrtc-review.googlesource.com/89389 Reviewed-by: Oleh Prypin Commit-Queue: Mirko Bonadei Cr-Commit-Position: refs/heads/master@{#24036} --- common_video/BUILD.gn | 8 -------- 1 file changed, 8 deletions(-) diff --git a/common_video/BUILD.gn b/common_video/BUILD.gn index 7dfac4fa6a..3e06cb8765 100644 --- a/common_video/BUILD.gn +++ b/common_video/BUILD.gn @@ -8,10 +8,6 @@ import("../webrtc.gni") -config("common_video_config") { - include_dirs = [ "include" ] -} - rtc_static_library("common_video") { visibility = [ "*" ] @@ -45,10 +41,6 @@ rtc_static_library("common_video") { "video_render_frames.h", ] - include_dirs = [ "../modules/interface" ] - - public_configs = [ ":common_video_config" ] - deps = [ "..:webrtc_common", "../:typedefs",