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

Unified Diff: webrtc/BUILD.gn

Issue 2593313002: Hook up new "rtc_enable_sctp" build argument to "HAVE_SCTP" define. (Closed)
Patch Set: Use a different variable (rtc_enable_sctp). Created 4 years 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/api/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/BUILD.gn
diff --git a/webrtc/BUILD.gn b/webrtc/BUILD.gn
index da67c093ec2a046a7538183bdff7e412556b8bbf..3fb9cfea72ebf94abda5ea30f50f0f079ca32b94 100644
--- a/webrtc/BUILD.gn
+++ b/webrtc/BUILD.gn
@@ -118,6 +118,10 @@ config("common_config") {
defines += [ "RTC_DISABLE_VP9" ]
}
+ if (rtc_enable_sctp) {
+ defines += [ "HAVE_SCTP" ]
+ }
+
if (build_with_chromium) {
defines += [
# NOTICE: Since common_inherited_config is used in public_configs for our
@@ -126,7 +130,6 @@ config("common_config") {
# source when webrtc:4256 is completed.
"ENABLE_EXTERNAL_AUTH",
"HAVE_OPENSSL_SSL_H",
- "HAVE_SCTP",
"HAVE_SRTP",
"HAVE_WEBRTC_VIDEO",
"HAVE_WEBRTC_VOICE",
« no previous file with comments | « no previous file | webrtc/api/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698