Add missing dependencies on audio, video and call to the new GN files.

This caused linker failures when depending on the new `api` target.

TBR=henrika@webrtc.org
NOTRY=True

Review-Url: https://codereview.webrtc.org/2029323006
Cr-Commit-Position: refs/heads/master@{#13042}
This commit is contained in:
katrielc 2016-06-03 13:14:28 -07:00 committed by Commit bot
parent 5251680ec3
commit 14897d0b7d
3 changed files with 5 additions and 0 deletions

View File

@ -117,6 +117,7 @@ source_set("libjingle_peerconnection") {
} }
deps = [ deps = [
"../call",
"../media", "../media",
"../pc", "../pc",
] ]

View File

@ -9,3 +9,5 @@ tommi@webrtc.org
# structural changes, please get a review from a reviewer in this file. # structural changes, please get a review from a reviewer in this file.
per-file *.gyp=* per-file *.gyp=*
per-file *.gypi=* per-file *.gypi=*
per-file BUILD.gn=kjellander@webrtc.org

View File

@ -28,8 +28,10 @@ source_set("call") {
deps = [ deps = [
"..:rtc_event_log", "..:rtc_event_log",
"..:webrtc_common", "..:webrtc_common",
"../audio",
"../modules/congestion_controller", "../modules/congestion_controller",
"../modules/rtp_rtcp", "../modules/rtp_rtcp",
"../system_wrappers", "../system_wrappers",
"../video",
] ]
} }