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}
diff --git a/webrtc/api/BUILD.gn b/webrtc/api/BUILD.gn
index f84010d..b7d87ef 100644
--- a/webrtc/api/BUILD.gn
+++ b/webrtc/api/BUILD.gn
@@ -117,6 +117,7 @@
}
deps = [
+ "../call",
"../media",
"../pc",
]
diff --git a/webrtc/api/OWNERS b/webrtc/api/OWNERS
index 2cf27e5..d8067dd 100644
--- a/webrtc/api/OWNERS
+++ b/webrtc/api/OWNERS
@@ -9,3 +9,5 @@
# structural changes, please get a review from a reviewer in this file.
per-file *.gyp=*
per-file *.gypi=*
+
+per-file BUILD.gn=kjellander@webrtc.org
diff --git a/webrtc/call/BUILD.gn b/webrtc/call/BUILD.gn
index c044e69..15a3560 100644
--- a/webrtc/call/BUILD.gn
+++ b/webrtc/call/BUILD.gn
@@ -28,8 +28,10 @@
deps = [
"..:rtc_event_log",
"..:webrtc_common",
+ "../audio",
"../modules/congestion_controller",
"../modules/rtp_rtcp",
"../system_wrappers",
+ "../video",
]
}