aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests/Podfile
blob: 4cb94715709fa34918a0da1c88cde20dbdec2c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'

install! 'cocoapods', :deterministic_uuids => false

def shared_pods
	pod 'Protobuf', :path => "../../../third_party/protobuf"
	pod 'BoringSSL', :podspec => ".."
	pod 'gRPC', :path => "../../.."
	pod 'gRPC-Core', :path => "../../.."
	pod 'gRPC-RxLibrary', :path => "../../.."
	pod 'gRPC-ProtoRPC',  :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