mirror of https://github.com/grpc/grpc.git
Update Podfile for CocoaPods 1.0 changes requiring more fields and the removal of link_with in podspec.
parent
9b5c8c66e2
commit
88e0bb1b34
2 changed files with 16 additions and 10 deletions
@ -1,31 +1,33 @@ |
||||
source 'https://github.com/CocoaPods/Specs.git' |
||||
platform :ios, '8.0' |
||||
|
||||
pod 'Protobuf', :path => "../../../third_party/protobuf" |
||||
pod 'BoringSSL', :podspec => ".." |
||||
pod 'gRPC', :path => "../../.." |
||||
pod 'RemoteTest', :path => "RemoteTestClient" |
||||
|
||||
link_with 'AllTests', |
||||
'RxLibraryUnitTests', |
||||
'InteropTests', |
||||
'InteropTestsLocalSSL', |
||||
'InteropTestsLocalCleartext' |
||||
def shared_pods |
||||
pod 'Protobuf', :path => "../../../third_party/protobuf" |
||||
pod 'BoringSSL', :podspec => ".." |
||||
pod 'gRPC', :path => "../../.." |
||||
pod 'RemoteTest', :path => "RemoteTestClient" |
||||
end |
||||
|
||||
target 'Tests' do |
||||
shared_pods |
||||
end |
||||
|
||||
target 'AllTests' do |
||||
shared_pods |
||||
end |
||||
|
||||
target 'RxLibraryUnitTests' do |
||||
shared_pods |
||||
end |
||||
|
||||
target 'InteropTestsRemote' do |
||||
shared_pods |
||||
end |
||||
|
||||
target 'InteropTestsLocalSSL' do |
||||
shared_pods |
||||
end |
||||
|
||||
target 'InteropTestsLocalCleartext' do |
||||
shared_pods |
||||
end |
||||
|
Loading…
Reference in new issue