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

Unified Diff: webrtc/examples/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 | « no previous file | webrtc/sdk/BUILD.gn » ('j') | webrtc/sdk/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/examples/BUILD.gn
diff --git a/webrtc/examples/BUILD.gn b/webrtc/examples/BUILD.gn
index dfe15d18d703312316de661ce5eecd2282226ad4..3ee9ae5e9fd3648c1f7a8c35d2f4e50dc6e0af3e 100644
--- a/webrtc/examples/BUILD.gn
+++ b/webrtc/examples/BUILD.gn
@@ -300,6 +300,7 @@ if (is_ios || (is_mac && target_cpu != "x86")) {
deps = [
":AppRTCMobile_ios_bundle_data",
+ ":AppRTCMobile_ios_frameworks",
":AppRTCMobile_lib",
]
@@ -308,6 +309,18 @@ if (is_ios || (is_mac && target_cpu != "x86")) {
}
}
+ bundle_data("AppRTCMobile_ios_frameworks") {
+ public_deps = [
+ "//webrtc/sdk:rtc_sdk_framework_objc+link",
+ ]
+ sources = [
+ "$root_out_dir/WebRTC.framework",
+ ]
+ outputs = [
+ "{{bundle_resources_dir}}/Frameworks/{{source_file_part}}",
+ ]
+ }
+
bundle_data("AppRTCMobile_ios_bundle_data") {
sources = [
"objc/AppRTCMobile/ios/resources/Roboto-Regular.ttf",
« no previous file with comments | « no previous file | webrtc/sdk/BUILD.gn » ('j') | webrtc/sdk/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698