• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# This file has been automatically generated from a template file.
2# Please make modifications to
3# `templates/gRPC-ProtoRPC.podspec.template` instead. This file can be
4# regenerated from the template by running
5# `tools/buildgen/generate_projects.sh`.
6
7# Copyright 2015 gRPC authors.
8#
9# Licensed under the Apache License, Version 2.0 (the "License");
10# you may not use this file except in compliance with the License.
11# You may obtain a copy of the License at
12#
13#     http://www.apache.org/licenses/LICENSE-2.0
14#
15# Unless required by applicable law or agreed to in writing, software
16# distributed under the License is distributed on an "AS IS" BASIS,
17# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18# See the License for the specific language governing permissions and
19# limitations under the License.
20
21
22Pod::Spec.new do |s|
23  s.name     = 'gRPC-ProtoRPC'
24  version = '1.35.0'
25  s.version  = version
26  s.summary  = 'RPC library for Protocol Buffers, based on gRPC'
27  s.homepage = 'https://grpc.io'
28  s.license  = 'Apache License, Version 2.0'
29  s.authors  = { 'The gRPC contributors' => 'grpc-packages@google.com' }
30
31  s.source = {
32    :git => 'https://github.com/grpc/grpc.git',
33    :tag => "v#{version}",
34  }
35
36  s.ios.deployment_target = '9.0'
37  s.osx.deployment_target = '10.10'
38  s.tvos.deployment_target = '10.0'
39  s.watchos.deployment_target = '4.0'
40
41  name = 'ProtoRPC'
42  s.module_name = name
43  s.header_dir = name
44
45  s.default_subspec = 'Main', 'Legacy', 'Legacy-Header'
46
47  s.subspec 'Legacy-Header' do |ss|
48    ss.header_mappings_dir = "src/objective-c/ProtoRPC"
49    ss.public_header_files = "src/objective-c/ProtoRPC/ProtoRPCLegacy.h"
50    ss.source_files = "src/objective-c/ProtoRPC/ProtoRPCLegacy.h"
51  end
52
53  s.subspec 'Main' do |ss|
54    ss.header_mappings_dir = "src/objective-c/ProtoRPC"
55    ss.dependency "#{s.name}/Legacy-Header", version
56    ss.dependency 'gRPC/Interface', version
57    ss.dependency 'Protobuf', '~> 3.0'
58
59    ss.source_files = "src/objective-c/ProtoRPC/ProtoMethod.{h,m}",
60                      "src/objective-c/ProtoRPC/ProtoRPC.{h,m}",
61                      "src/objective-c/ProtoRPC/ProtoService.{h,m}"
62  end
63
64  s.subspec 'Legacy' do |ss|
65    ss.header_mappings_dir = "src/objective-c/ProtoRPC"
66    ss.dependency "#{s.name}/Main", version
67    ss.dependency "#{s.name}/Legacy-Header", version
68    ss.dependency 'gRPC/GRPCCore', version
69    ss.dependency 'gRPC-RxLibrary', version
70    ss.dependency 'Protobuf', '~> 3.0'
71
72    ss.source_files = "src/objective-c/ProtoRPC/ProtoRPCLegacy.m",
73                      "src/objective-c/ProtoRPC/ProtoServiceLegacy.m"
74  end
75
76  # CFStream is now default. Leaving this subspec only for compatibility purpose.
77  s.subspec 'CFStream' do |ss|
78    ss.dependency "#{s.name}/Legacy", version
79  end
80
81  s.pod_target_xcconfig = {
82    # This is needed by all pods that depend on Protobuf:
83    'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1',
84    # This is needed by all pods that depend on gRPC-RxLibrary:
85    'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES',
86    'CLANG_WARN_STRICT_PROTOTYPES' => 'NO',
87  }
88end
89