Fixed public_deps for libjingle_peerconnection{,_api}

https://codereview.webrtc.org/2514883002/ changed and moved these targets around but did not add public dependencies for the fallbacks, which causes gn gen --check a lot of anger.

NOTRY=true # Only build changes and windows bots are cranky atm.
BUG=webrtc:5806

Review-Url: https://codereview.webrtc.org/2651663002
Cr-Commit-Position: refs/heads/master@{#16214}
This commit is contained in:
ossu 2017-01-23 07:37:43 -08:00 committed by Commit bot
parent 50cfe1fda7
commit da25006431
2 changed files with 5 additions and 2 deletions

View File

@ -88,7 +88,7 @@ rtc_static_library("libjingle_peerconnection_api") {
# TODO(ossu): Remove once downstream projects have updated.
rtc_source_set("libjingle_peerconnection") {
deps = [
public_deps = [
"../pc:libjingle_peerconnection",
]
}

View File

@ -146,13 +146,16 @@ rtc_static_library("libjingle_peerconnection") {
deps = [
":rtc_pc",
"../api:call_api",
"../api:libjingle_peerconnection_api",
"../api:rtc_stats_api",
"../call",
"../media",
"../stats",
]
public_deps = [
"../api:libjingle_peerconnection_api",
]
if (rtc_use_quic) {
sources += [
"quicdatachannel.cc",