From 14897d0b7d649b74b0fadb5d6886b17da142ece9 Mon Sep 17 00:00:00 2001 From: katrielc Date: Fri, 3 Jun 2016 13:14:28 -0700 Subject: [PATCH] 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} --- webrtc/api/BUILD.gn | 1 + webrtc/api/OWNERS | 2 ++ webrtc/call/BUILD.gn | 2 ++ 3 files changed, 5 insertions(+) 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", ] }