From 130f2fd5c32aaf75626d45a738b2eb5e4f0402bf Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Sat, 18 Jun 2022 00:07:14 +0200 Subject: [PATCH] Fix missing visibility for new API targets. Bug: webrtc:8733 Change-Id: I3fb1ac9a9941f7b8ad35a51be0e7b6840a2d9141 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/266220 Reviewed-by: Harald Alvestrand Auto-Submit: Mirko Bonadei Commit-Queue: Harald Alvestrand Cr-Commit-Position: refs/heads/main@{#37265} --- api/BUILD.gn | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/api/BUILD.gn b/api/BUILD.gn index 9e8c48d681..5f6bc499f8 100644 --- a/api/BUILD.gn +++ b/api/BUILD.gn @@ -136,6 +136,8 @@ rtc_library("media_stream_interface") { # TODO(bugs.webrtc.org/8733): Switch to rtc_library. rtc_library("candidate") { + visibility = [ "*" ] + # TODO(bugs.webrtc.org/8733): Uncomment. # sources = [ # "candidate.cc", @@ -155,11 +157,14 @@ rtc_library("candidate") { } rtc_source_set("turn_customizer") { + visibility = [ "*" ] # TODO(bugs.webrtc.org/8733): Uncomment. # sources = [ "turn_customizer.h" ] } rtc_source_set("ice_transport_interface") { + visibility = [ "*" ] + # TODO(bugs.webrtc.org/8733): Uncomment. # sources = [ "ice_transport_interface.h" ] deps = [ @@ -174,6 +179,8 @@ rtc_source_set("ice_transport_interface") { # TODO(bugs.webrtc.org/8733): Switch to rtc_library. rtc_source_set("dtls_transport_interface") { + visibility = [ "*" ] + # TODO(bugs.webrtc.org/8733): Uncomment. # sources = [ # "dtls_transport_interface.cc",