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

Unified Diff: webrtc/pc/BUILD.gn

Issue 3003643002: Allow external TaskQueue implementations on Linux (Closed)
Patch Set: Switched to use rtc_source_set instead. Created 3 years, 4 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
« no previous file with comments | « no previous file | webrtc/rtc_base/BUILD.gn » ('j') | webrtc/rtc_base/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
« no previous file with comments | « no previous file | webrtc/rtc_base/BUILD.gn » ('j') | webrtc/rtc_base/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698