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

Unified Diff: webrtc/sdk/BUILD.gn

Issue 2408983002: GN: Build iOS framework in build_ios_libs.sh (Closed)
Patch Set: Add check for provisioning file. Created 4 years, 2 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/build/ios/build_ios_libs.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/sdk/BUILD.gn
diff --git a/webrtc/sdk/BUILD.gn b/webrtc/sdk/BUILD.gn
index f4402c8b452b3a90b516cf44c829a849589c7102..091f84c2e761371f77359c7aeac7abf53695a31f 100644
--- a/webrtc/sdk/BUILD.gn
+++ b/webrtc/sdk/BUILD.gn
@@ -307,6 +307,8 @@ if (is_ios || (is_mac && mac_deployment_target == "10.7")) {
public_headers += [ "objc/Framework/Headers/WebRTC/RTCFileLogger.h" ]
}
+ ldflags = [ "-all_load" ]
+
deps = [
":rtc_sdk_peerconnection_objc",
"//webrtc/system_wrappers:field_trial_default",
@@ -336,4 +338,13 @@ if (is_ios || (is_mac && mac_deployment_target == "10.7")) {
}
}
}
+
+ rtc_static_library("rtc_sdk_objc") {
+ complete_static_lib = true
+ deps = [
+ ":rtc_sdk_peerconnection_objc",
+ "../system_wrappers:field_trial_default",
+ "../system_wrappers:metrics_default",
+ ]
+ }
}
« no previous file with comments | « webrtc/build/ios/build_ios_libs.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698