Temporarily increase visibility of publicly used build targets.

Bug: webrtc:9808
Change-Id: I4ad2402dc288766732a2d81a289f717deec56629
Reviewed-on: https://webrtc-review.googlesource.com/c/103460
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#24981}
This commit is contained in:
Mirko Bonadei 2018-10-03 15:39:56 +02:00 committed by Commit Bot
parent 588f4642d1
commit 8ca5c5216d
2 changed files with 12 additions and 1 deletions

View File

@ -419,6 +419,11 @@ if (!build_with_chromium) {
}
rtc_source_set("webrtc_common") {
# 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 = [
"common_types.h",
]

View File

@ -58,7 +58,13 @@ rtc_static_library("audio_format_conversion") {
}
rtc_static_library("rent_a_codec") {
visibility += webrtc_default_visibility
# 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 += [ "*" ]
allow_poison = [ "audio_codecs" ]
sources = [
"acm2/acm_codec_database.cc",
"acm2/acm_codec_database.h",