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

Side by Side Diff: third_party/grpc/src/objective-c/tests/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 BINDIR=../../../../bins/$CONFIG
12 PROTOC=$BINDIR/protobuf/protoc
13 PLUGIN=$BINDIR/grpc_objective_c_plugin
14 $PROTOC --plugin=protoc-gen-grpc=$PLUGIN --objc_out=. --grpc_out=. *.proto
15 CMD
16
17 s.subspec "Messages" do |ms|
18 ms.source_files = "*.pbobjc.{h,m}"
19 ms.header_mappings_dir = "."
20 ms.requires_arc = false
21 ms.dependency "Protobuf", "~> 3.0.0-alpha-4"
22 end
23
24 s.subspec "Services" do |ss|
25 ss.source_files = "*.pbrpc.{h,m}"
26 ss.header_mappings_dir = "."
27 ss.requires_arc = true
28 ss.dependency "gRPC", "~> 0.12"
29 ss.dependency "#{s.name}/Messages"
30 end
31 end
OLDNEW
« no previous file with comments | « third_party/grpc/src/objective-c/tests/Podfile ('k') | third_party/grpc/src/objective-c/tests/RemoteTestClient/empty.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698