aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests/Connectivity/Podfile
diff options
context:
space:
mode:
authorGravatar Jorge Canizales <jcanizales@google.com>2016-06-29 17:02:16 -0700
committerGravatar Jorge Canizales <jcanizales@google.com>2016-06-29 17:02:16 -0700
commit3325c0b2a248c28666d9a0a7c9a27e1dd33099e9 (patch)
treec598fe6f57bc322477fb54d449ac3e91ea0468a6 /src/objective-c/tests/Connectivity/Podfile
parentdf23bf4acae13198140a1df66302bac829462f4e (diff)
Add Podfile and pod install
Diffstat (limited to 'src/objective-c/tests/Connectivity/Podfile')
-rw-r--r--src/objective-c/tests/Connectivity/Podfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/objective-c/tests/Connectivity/Podfile b/src/objective-c/tests/Connectivity/Podfile
new file mode 100644
index 0000000000..f9224d9e4e
--- /dev/null
+++ b/src/objective-c/tests/Connectivity/Podfile
@@ -0,0 +1,10 @@
+install! 'cocoapods', :deterministic_uuids => false
+
+# Location of gRPC's repo root relative to this file.
+GRPC_LOCAL_SRC = '../../../..'
+
+target 'ConnectivityTestingApp' do
+ pod 'gRPC', :path => GRPC_LOCAL_SRC
+ pod 'Protobuf', :path => "#{GRPC_LOCAL_SRC}/third_party/protobuf"
+ pod 'BoringSSL', :podspec => "#{GRPC_LOCAL_SRC}/src/objective-c"
+end