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

Unified Diff: webrtc/p2p/BUILD.gn

Issue 2077883002: GN: Update xmpp and p2p to match Chromium build (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added nacl dependency and missing sources Created 4 years, 6 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 | « webrtc/libjingle/xmpp/xmpp.gyp ('k') | webrtc/p2p/p2p.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/BUILD.gn
diff --git a/webrtc/p2p/BUILD.gn b/webrtc/p2p/BUILD.gn
index 4940e34c9805ca330368e5de4813ea5098877d00..32b7fa4c53eddd51d5b2ef75013f04f9cadeb82b 100644
--- a/webrtc/p2p/BUILD.gn
+++ b/webrtc/p2p/BUILD.gn
@@ -26,6 +26,7 @@ source_set("rtc_p2p") {
"base/basicpacketsocketfactory.h",
"base/candidate.h",
"base/common.h",
+ "base/dtlstransport.h",
"base/dtlstransportchannel.cc",
"base/dtlstransportchannel.h",
"base/p2pconstants.cc",
@@ -44,8 +45,8 @@ source_set("rtc_p2p") {
"base/pseudotcp.h",
"base/relayport.cc",
"base/relayport.h",
- "base/relayserver.cc",
- "base/relayserver.h",
+ "base/session.cc",
+ "base/session.h",
"base/sessiondescription.cc",
"base/sessiondescription.h",
"base/sessionid.h",
@@ -55,8 +56,6 @@ source_set("rtc_p2p") {
"base/stunport.h",
"base/stunrequest.cc",
"base/stunrequest.h",
- "base/stunserver.cc",
- "base/stunserver.h",
"base/tcpport.cc",
"base/tcpport.h",
"base/transport.cc",
@@ -73,8 +72,6 @@ source_set("rtc_p2p") {
"base/transportinfo.h",
"base/turnport.cc",
"base/turnport.h",
- "base/turnserver.cc",
- "base/turnserver.h",
"base/udpport.h",
"client/basicportallocator.cc",
"client/basicportallocator.h",
@@ -104,7 +101,19 @@ source_set("rtc_p2p") {
":rtc_p2p_inherited_config",
]
- if (!build_with_chromium) {
+ if (build_with_chromium) {
+ if (is_nacl) {
+ deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
+ }
+ } else {
+ sources += [
+ "base/relayserver.cc",
+ "base/relayserver.h",
+ "base/stunserver.cc",
+ "base/stunserver.h",
+ "base/turnserver.cc",
+ "base/turnserver.h",
+ ]
defines += [
"FEATURE_ENABLE_VOICEMAIL",
"FEATURE_ENABLE_PSTN",
« no previous file with comments | « webrtc/libjingle/xmpp/xmpp.gyp ('k') | webrtc/p2p/p2p.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698