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

Unified Diff: webrtc/build/ios/webrtc/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: 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/webrtc/WebRTC.podspec
diff --git a/webrtc/build/ios/webrtc/WebRTC.podspec b/webrtc/build/ios/webrtc/WebRTC.podspec
new file mode 100644
index 0000000000000000000000000000000000000000..a2b6ec86f52f8aaf0eed5d9beb5fa5c182b004aa
--- /dev/null
+++ b/webrtc/build/ios/webrtc/WebRTC.podspec
@@ -0,0 +1,25 @@
+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.header_mappings_dir = "include"
+ #s.public_header_files = "include/**/*.h"
+ #s.vendored_libraries = "lib/*.a"
+ s.vendored_frameworks = "WebRTC.framework"
+
+ #.frameworks = "AVFoundation", "AudioToolbox", "CoreMedia", "GLKit", "VideoToolbox"
+ #s.library = "c++"
+ #s.pod_target_xcconfig = { 'HEADER_SEARCH_PATHS' => '$(FRAMEWORK_SEARCH_PATHS)/WebRTC.framework/Headers' }
+end

Powered by Google App Engine
This is Rietveld 408576698