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

Unified Diff: webrtc/sdk/BUILD.gn

Issue 2656833002: AppRTCMobile links against framework target. (Closed)
Patch Set: Created 3 years, 11 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/examples/BUILD.gn ('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 9f3ccc6b7d1f604826894671d6f83378553f5d80..3e44f9b4a33c4a3d569369e970f9a16056e8e707 100644
--- a/webrtc/sdk/BUILD.gn
+++ b/webrtc/sdk/BUILD.gn
@@ -317,7 +317,11 @@ if (is_ios || is_mac) {
public_headers += [ "objc/Framework/Headers/WebRTC/RTCFileLogger.h" ]
}
- ldflags = [ "-all_load" ]
+ ldflags = [
+ "-all_load",
+ "-install_name",
daniela-webrtc 2017/01/26 07:44:24 I'm not familiar with this flag. What is it suppos
kthelgason 2017/01/26 08:31:48 In short, it has to do with how macOS loads dynami
+ "@rpath/$output_name.framework/$output_name",
+ ]
deps = [
":rtc_sdk_peerconnection_objc",
« no previous file with comments | « webrtc/examples/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698