diff --git a/webrtc/api/BUILD.gn b/webrtc/api/BUILD.gn index f84010d309..b7d87ef482 100644 --- a/webrtc/api/BUILD.gn +++ b/webrtc/api/BUILD.gn @@ -117,6 +117,7 @@ source_set("libjingle_peerconnection") { } deps = [ + "../call", "../media", "../pc", ] diff --git a/webrtc/api/OWNERS b/webrtc/api/OWNERS index 2cf27e5385..d8067dd595 100644 --- a/webrtc/api/OWNERS +++ b/webrtc/api/OWNERS @@ -9,3 +9,5 @@ tommi@webrtc.org # 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 c044e69018..15a3560d91 100644 --- a/webrtc/call/BUILD.gn +++ b/webrtc/call/BUILD.gn @@ -28,8 +28,10 @@ source_set("call") { deps = [ "..:rtc_event_log", "..:webrtc_common", + "../audio", "../modules/congestion_controller", "../modules/rtp_rtcp", "../system_wrappers", + "../video", ] }