From 77d197fe1d0bc8f7cd1a6521ad8625c362104483 Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Wed, 4 Sep 2019 08:38:39 +0200 Subject: [PATCH] Make video_capture_internal_impl publicly visible. Since WebRTC requires [1] users to explicitly link against the video_capture_internal_impl target, it should also be visible to avoid depending on transitive dependencies. [1] - https://cs.chromium.org/chromium/src/third_party/webrtc/modules/video_capture/BUILD.gn?l=11-14&rcl=5d24b16c7722257edda195fce84bd89b94dd9c72 Bug: webrtc:10941 Change-Id: Id4ff982b3462ef5b7e86ff5332f29b6e60a35b5e Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/151301 Commit-Queue: Mirko Bonadei Reviewed-by: Niels Moller Cr-Commit-Position: refs/heads/master@{#29062} --- modules/video_capture/BUILD.gn | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/video_capture/BUILD.gn b/modules/video_capture/BUILD.gn index 8d51b7fc5e..a085744973 100644 --- a/modules/video_capture/BUILD.gn +++ b/modules/video_capture/BUILD.gn @@ -45,6 +45,7 @@ rtc_static_library("video_capture_module") { if (!build_with_chromium) { rtc_source_set("video_capture_internal_impl") { + visibility = [ "*" ] deps = [ ":video_capture_module", "../../api:scoped_refptr",