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

Unified Diff: webrtc/build/ios/SDK/WebRTC.podspec

Issue 1829783003: Build dynamic framework with podspec for Objective-C API. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add basic README; address other comments Created 4 years, 9 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
Index: webrtc/build/ios/SDK/WebRTC.podspec
diff --git a/webrtc/build/ios/SDK/WebRTC.podspec b/webrtc/build/ios/SDK/WebRTC.podspec
new file mode 100644
index 0000000000000000000000000000000000000000..f31a983a2e6e179908c85a427dcecca89f538ff6
--- /dev/null
+++ b/webrtc/build/ios/SDK/WebRTC.podspec
@@ -0,0 +1,22 @@
+Pod::Spec.new do |s|
+ s.name = "WebRTC"
+ s.version = "0.0.1"
+ s.summary = "WebRTC SDK for iOS"
+ s.description = <<-DESC
+ WebRTC is a free, open project that provides browsers and mobile
+ applications with Real-Time Communications (RTC) capabilities via simple
+ APIs.
+ DESC
+ s.homepage = "http://webrtc.org/"
+ s.license = { :type => "BSD", :file => "LICENSE" }
+ s.author = "Google Inc."
+
+ s.platform = :ios, "8.0"
+ #s.source = { :git => "https://chromium.googlesource.com/external/webrtc.git" }
+
+ s.public_header_files = "WebRTC.framework/Headers/**/*.h"
+ s.vendored_frameworks = "WebRTC.framework"
+
+ #.frameworks = "AVFoundation", "AudioToolbox", "CoreMedia", "GLKit", "VideoToolbox"
tkchin_webrtc 2016/03/25 17:46:07 I don't really now pod syntax but are these commen
hjon_webrtc 2016/03/25 21:17:44 Yes; I've removed them since we don't seem to need
+ #s.library = "c++"
+end

Powered by Google App Engine
This is Rietveld 408576698