Index: webrtc/pc/BUILD.gn |
diff --git a/webrtc/pc/BUILD.gn b/webrtc/pc/BUILD.gn |
index 71e29d8a6cc4abc0199ea7a89c2eb61c0a073444..2ed020232e2364e61b7818f975f60fca3fb718cf 100644 |
--- a/webrtc/pc/BUILD.gn |
+++ b/webrtc/pc/BUILD.gn |
@@ -226,6 +226,12 @@ rtc_source_set("libjingle_peerconnection") { |
"../api:libjingle_peerconnection_api", |
] |
+ # This target always link with a default implementation |
+ # regardless of the flag |rtc_link_task_queue_impl|. |
nisse-webrtc
2017/08/23 11:00:25
Why? It's not a test target, right?
perkj_webrtc
2017/08/23 11:12:37
To not have to update all projects that depend on
nisse-webrtc
2017/08/23 11:24:46
Ok, we can refine it later. As far as I understand
kwiberg-webrtc
2017/08/23 13:23:25
Hmm. I wonder if a gn variable (rtc_link_task_queu
nisse-webrtc
2017/08/23 14:16:01
For an application, it makes sense to have a singl
perkj_webrtc
2017/08/25 10:09:38
It turns out that we don't need this exception. Th
|
+ deps = [ |
+ "../rtc_base:rtc_task_queue_impl", |
+ ] |
+ |
if (rtc_use_quic) { |
sources += [ |
"quicdatachannel.cc", |