aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests/Podfile
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2016-06-20 14:08:03 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2016-06-20 14:08:03 -0700
commitca3e9c82062f1613b2abe01f68c81c3e673bb73e (patch)
tree9fa085f27fb855be203116c7aae7edd7d2321717 /src/objective-c/tests/Podfile
parent36a58a7928e6a10b44b6cffdc118337ef7e0b8c1 (diff)
parent1468d4b8d5873e3f210d391ff1b74eac13436fe9 (diff)
Merge remote-tracking branch 'upstream/master' into ios-test
Diffstat (limited to 'src/objective-c/tests/Podfile')
-rw-r--r--src/objective-c/tests/Podfile26
1 files changed, 15 insertions, 11 deletions
diff --git a/src/objective-c/tests/Podfile b/src/objective-c/tests/Podfile
index 53edf8c890..d51b18cc34 100644
--- a/src/objective-c/tests/Podfile
+++ b/src/objective-c/tests/Podfile
@@ -1,34 +1,38 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
-pod 'Protobuf', :path => "../../../third_party/protobuf", :inhibit_warnings => true
-pod 'BoringSSL', :podspec => "..", :inhibit_warnings => true
-pod 'CronetFramework', :podspec => "..", :inhibit_warnings => true
-pod 'gRPC', :path => "../../.."
-pod 'RemoteTest', :path => "RemoteTestClient"
-
-link_with 'AllTests',
- 'RxLibraryUnitTests',
- 'InteropTests',
- 'InteropTestsLocalSSL',
- 'InteropTestsLocalCleartext'
+install! 'cocoapods', :deterministic_uuids => false
+
+def shared_pods
+ pod 'Protobuf', :path => "../../../third_party/protobuf", :inhibit_warnings => true
+ pod 'BoringSSL', :podspec => "..", :inhibit_warnings => true
+ pod 'CronetFramework', :podspec => "..", :inhibit_warnings => true
+ 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
post_install do |installer|