Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: third_party/grpc/src/objective-c/examples/RemoteTestClient/RemoteTest.podspec

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 Pod::Spec.new do |s|
2 s.name = "RemoteTest"
3 s.version = "0.0.1"
4 s.license = "New BSD"
5
6 s.ios.deployment_target = '7.1'
7 s.osx.deployment_target = '10.9'
8
9 # Run protoc with the Objective-C and gRPC plugins to generate protocol messag es and gRPC clients.
10 s.prepare_command = <<-CMD
11 protoc --objc_out=. --objcgrpc_out=. *.proto
12 CMD
13
14 s.subspec "Messages" do |ms|
15 ms.source_files = "*.pbobjc.{h,m}"
16 ms.header_mappings_dir = "."
17 ms.requires_arc = false
18 ms.dependency "Protobuf", "~> 3.0.0-alpha-4"
19 end
20
21 s.subspec "Services" do |ss|
22 ss.source_files = "*.pbrpc.{h,m}"
23 ss.header_mappings_dir = "."
24 ss.requires_arc = true
25 ss.dependency "gRPC", "~> 0.12"
26 ss.dependency "#{s.name}/Messages"
27 end
28 end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698