Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2684)

Unified Diff: webrtc/pc/BUILD.gn

Issue 2854123003: Build WebRTC with data channel only. (Closed)
Patch Set: Address the comments. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/pc/BUILD.gn
diff --git a/webrtc/pc/BUILD.gn b/webrtc/pc/BUILD.gn
index 8e78cafdab36248518f02be2de0ebf409fc52103..1a48fbc00e7d11424091affeb2c79f8a6e0d087b 100644
--- a/webrtc/pc/BUILD.gn
+++ b/webrtc/pc/BUILD.gn
@@ -147,11 +147,14 @@ rtc_static_library("libjingle_peerconnection") {
"../api:call_api",
"../api:rtc_stats_api",
"../api/video_codecs:video_codecs_api",
- "../call",
"../media",
"../stats",
]
+ if (rtc_enable_media) {
+ deps += [ "../call" ]
+ }
+
public_deps = [
"../api:libjingle_peerconnection_api",
]
« no previous file with comments | « webrtc/media/BUILD.gn ('k') | webrtc/pc/channel.cc » ('j') | webrtc/pc/mediasession.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698