diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-12-01 10:37:42 -0800 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-12-01 18:01:24 -0800 |
commit | 0c0d15fec04c56e1c7014676ac0667d03d2ac06e (patch) | |
tree | 2d3b6b351ecacc5b2dcfed1dd3e348852734e7b4 | |
parent | 0d718cd0f446485f23e097a60b8eff6d19312180 (diff) |
Move BoringSSL.podspec into src, and point Podfiles to it
-rw-r--r-- | examples/objective-c/auth_sample/Podfile | 1 | ||||
-rw-r--r-- | examples/objective-c/helloworld/Podfile | 1 | ||||
-rw-r--r-- | examples/objective-c/route_guide/Podfile | 1 | ||||
-rw-r--r-- | src/objective-c/BoringSSL.podspec (renamed from BoringSSL.podspec) | 0 | ||||
-rw-r--r-- | src/objective-c/examples/Sample/Podfile | 1 | ||||
-rw-r--r-- | src/objective-c/examples/SwiftSample/Podfile | 1 | ||||
-rw-r--r-- | src/objective-c/tests/Podfile | 1 |
7 files changed, 6 insertions, 0 deletions
diff --git a/examples/objective-c/auth_sample/Podfile b/examples/objective-c/auth_sample/Podfile index ea70511dc6..7affe08743 100644 --- a/examples/objective-c/auth_sample/Podfile +++ b/examples/objective-c/auth_sample/Podfile @@ -2,6 +2,7 @@ source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.0' pod 'Protobuf', :path => "../../../third_party/protobuf" +pod 'BoringSSL', :podspec => "../../../src/objective-c" pod 'gRPC', :path => "../../.." target 'AuthSample' do diff --git a/examples/objective-c/helloworld/Podfile b/examples/objective-c/helloworld/Podfile index 16af075a9f..eebf05470d 100644 --- a/examples/objective-c/helloworld/Podfile +++ b/examples/objective-c/helloworld/Podfile @@ -2,6 +2,7 @@ source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.0' pod 'Protobuf', :path => "../../../third_party/protobuf" +pod 'BoringSSL', :podspec => "../../../src/objective-c" pod 'gRPC', :path => "../../.." target 'HelloWorld' do diff --git a/examples/objective-c/route_guide/Podfile b/examples/objective-c/route_guide/Podfile index efa46bba4f..b9f2fefd6d 100644 --- a/examples/objective-c/route_guide/Podfile +++ b/examples/objective-c/route_guide/Podfile @@ -3,6 +3,7 @@ platform :ios, '8.0' target 'RouteGuideClient' do pod 'Protobuf', :path => "../../../third_party/protobuf" + pod 'BoringSSL', :podspec => "../../../src/objective-c" pod 'gRPC', :path => "../../.." # Depend on the generated RouteGuide library. pod 'RouteGuide', :path => '.' diff --git a/BoringSSL.podspec b/src/objective-c/BoringSSL.podspec index f5b738203d..f5b738203d 100644 --- a/BoringSSL.podspec +++ b/src/objective-c/BoringSSL.podspec diff --git a/src/objective-c/examples/Sample/Podfile b/src/objective-c/examples/Sample/Podfile index 3b2f412569..93859fb734 100644 --- a/src/objective-c/examples/Sample/Podfile +++ b/src/objective-c/examples/Sample/Podfile @@ -2,6 +2,7 @@ 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" diff --git a/src/objective-c/examples/SwiftSample/Podfile b/src/objective-c/examples/SwiftSample/Podfile index 3611b00863..f2df4a34a3 100644 --- a/src/objective-c/examples/SwiftSample/Podfile +++ b/src/objective-c/examples/SwiftSample/Podfile @@ -2,6 +2,7 @@ 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" diff --git a/src/objective-c/tests/Podfile b/src/objective-c/tests/Podfile index cab608d37f..7ec7a25898 100644 --- a/src/objective-c/tests/Podfile +++ b/src/objective-c/tests/Podfile @@ -2,6 +2,7 @@ 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" |