Temporarily increase visibility of pacing and call/rtp_interfaces

NOTRY=true

Bug: webrtc:9808
Change-Id: I1ee8f6843167bb8904a367d1d2a249a6b15a18db
Reviewed-on: https://webrtc-review.googlesource.com/c/103800
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#24984}
diff --git a/call/BUILD.gn b/call/BUILD.gn
index 724c49b..7c1cb3f 100644
--- a/call/BUILD.gn
+++ b/call/BUILD.gn
@@ -50,6 +50,11 @@
 # TODO(nisse): These RTP targets should be moved elsewhere
 # when interfaces have stabilized. See also TODO for |mock_rtp_interfaces|.
 rtc_source_set("rtp_interfaces") {
+  # Client code SHOULD NOT USE THIS TARGET, but for now it needs to be public
+  # because there exists client code that uses it.
+  # TODO(bugs.webrtc.org/9808): Move to private visibility as soon as that
+  # client code gets updated.
+  visibility = [ "*" ]
   sources = [
     "rtcp_packet_sink_interface.h",
     "rtp_config.cc",
diff --git a/modules/pacing/BUILD.gn b/modules/pacing/BUILD.gn
index a53086f..a06233a 100644
--- a/modules/pacing/BUILD.gn
+++ b/modules/pacing/BUILD.gn
@@ -9,6 +9,11 @@
 import("../../webrtc.gni")
 
 rtc_static_library("pacing") {
+  # Client code SHOULD NOT USE THIS TARGET, but for now it needs to be public
+  # because there exists client code that uses it.
+  # TODO(bugs.webrtc.org/9808): Move to private visibility as soon as that
+  # client code gets updated.
+  visibility = [ "*" ]
   sources = [
     "bitrate_prober.cc",
     "bitrate_prober.h",