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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 Pod::Spec.new do |s|
2 s.name = "WebRTC"
3 s.version = "0.0.1"
4 s.summary = "WebRTC SDK for iOS"
5 s.description = <<-DESC
6 WebRTC is a free, open project that provides browsers and mobile
7 applications with Real-Time Communications (RTC) capabilities via simple
8 APIs.
9 DESC
10 s.homepage = "http://webrtc.org/"
11 s.license = { :type => "BSD", :file => "LICENSE" }
12 s.author = "Google Inc."
13
14 s.platform = :ios, "8.0"
15 #s.source = { :git => "https://chromium.googlesource.com/external/webrtc.git" }
16
17 s.public_header_files = "WebRTC.framework/Headers/**/*.h"
18 s.vendored_frameworks = "WebRTC.framework"
19
20 #.frameworks = "AVFoundation", "AudioToolbox", "CoreMedia", "GLKit", "VideoToo lbox"
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
21 #s.library = "c++"
22 end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698