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

Unified Diff: webrtc/BUILD.gn

Issue 1441323002: Fix compilation of WebRTC on iOS for Chromium. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 1 month 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 | no next file » | 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 45e7c144fd920661aaa029a207d5592658b6b52a..40e2828c9c475d40ab860727e76fa5e0fc7f65ec 100644
--- a/webrtc/BUILD.gn
+++ b/webrtc/BUILD.gn
@@ -20,7 +20,7 @@ config("common_inherited_config") {
defines += [ "WEBRTC_MOZILLA_BUILD" ]
}
if (build_with_chromium) {
- defines = [ "WEBRTC_CHROMIUM_BUILD" ]
+ defines += [ "WEBRTC_CHROMIUM_BUILD" ]
include_dirs = [
# The overrides must be included first as that is the mechanism for
# selecting the override headers in Chromium.
@@ -30,6 +30,10 @@ config("common_inherited_config") {
# immediate subdirectory of the top-level.
"..",
]
+
+ if (is_ios) {
+ defines += [ "SSL_USE_OPENSSL" ]
kjellander_webrtc 2015/11/16 14:47:13 I don't want our GYP and GN builds to diverge. I u
+ }
}
if (is_posix) {
defines += [ "WEBRTC_POSIX" ]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698