Files
platform-external-webrtc/webrtc/sdk/objc/WebRTC.podspec
tkchin 9eeb6240c9 Build dynamic iOS SDK.
- Places most ObjC code into webrtc/sdk/objc instead.
- New gyp targets to build, strip and export symbols for dylib.
- Removes old script used to generate dylib.

BUG=

Review URL: https://codereview.webrtc.org/1903663002

Cr-Commit-Position: refs/heads/master@{#12524}
2016-04-27 08:54:27 +00:00

19 lines
615 B
Ruby

Pod::Spec.new do |s|
s.name = "WebRTC"
s.version = "${FRAMEWORK_VERSION_NUMBER}"
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.public_header_files = "WebRTC.framework/Headers/**/*.h"
s.vendored_frameworks = "WebRTC.framework"
end