blob: e5e3a1801ec3014a2ee615db2b1f14cf051004b6 [file] [log] [blame]
Jorge Canizalese487a722016-04-30 12:05:26 -07001%YAML 1.2
2--- |
Muxi Yan27e9db42017-01-30 09:21:05 -08003 # This file has been automatically generated from a template file.
4 # Please make modifications to `templates/gRPC-Core.podspec.template`
5 # instead. This file can be regenerated from the template by running
6 # `tools/buildgen/generate_projects.sh`.
Jorge Canizalese487a722016-04-30 12:05:26 -07007
Muxi Yan27e9db42017-01-30 09:21:05 -08008 # gRPC Core CocoaPods podspec
9 #
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020010 # Copyright 2015 gRPC authors.
Jorge Canizalese487a722016-04-30 12:05:26 -070011 #
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020012 # Licensed under the Apache License, Version 2.0 (the "License");
13 # you may not use this file except in compliance with the License.
14 # You may obtain a copy of the License at
Jorge Canizalese487a722016-04-30 12:05:26 -070015 #
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020016 # http://www.apache.org/licenses/LICENSE-2.0
Jorge Canizalese487a722016-04-30 12:05:26 -070017 #
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020018 # Unless required by applicable law or agreed to in writing, software
19 # distributed under the License is distributed on an "AS IS" BASIS,
20 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 # See the License for the specific language governing permissions and
22 # limitations under the License.
Jorge Canizalese487a722016-04-30 12:05:26 -070023
24 <%!
Jorge Canizalescc074d92016-06-28 09:52:43 -070025 def grpc_private_files(libs):
Jorge Canizalese487a722016-04-30 12:05:26 -070026 out = []
27 for lib in libs:
28 if lib.name in ("grpc", "gpr"):
29 out += lib.get('headers', [])
Jorge Canizalese487a722016-04-30 12:05:26 -070030 out += lib.get('src', [])
31 return out;
Jorge Canizalescc074d92016-06-28 09:52:43 -070032
33 def grpc_public_headers(libs):
34 out = []
35 for lib in libs:
36 if lib.name in ("grpc", "gpr"):
37 out += lib.get('public_headers', [])
38 return out
39
Jorge Canizalese487a722016-04-30 12:05:26 -070040 def grpc_private_headers(libs):
41 out = []
42 for lib in libs:
43 if lib.name in ("grpc", "gpr"):
44 out += lib.get('headers', [])
45 return out
Jorge Canizalescc074d92016-06-28 09:52:43 -070046
47 def ruby_multiline_list(files, indent):
48 return (',\n' + indent*' ').join('\'%s\'' % f for f in files)
Jorge Canizalese487a722016-04-30 12:05:26 -070049 %>
50 Pod::Spec.new do |s|
51 s.name = 'gRPC-Core'
Muxi Yan690aee62017-01-27 02:52:47 +000052 version = '${settings.version}'
Jorge Canizalese487a722016-04-30 12:05:26 -070053 s.version = version
54 s.summary = 'Core cross-platform gRPC library, written in C'
55 s.homepage = 'http://www.grpc.io'
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020056 s.license = 'Apache License, Version 2.0'
Jorge Canizalese487a722016-04-30 12:05:26 -070057 s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' }
58
59 s.source = {
60 :git => 'https://github.com/grpc/grpc.git',
Muxi Yan690aee62017-01-27 02:52:47 +000061 :tag => "v#{version}",
Jorge Canizalescc074d92016-06-28 09:52:43 -070062 # TODO(jcanizales): Depend explicitly on the nanopb pod, and disable submodules.
Jorge Canizales66c8ddd2016-06-08 17:39:40 -070063 :submodules => true,
Jorge Canizalese487a722016-04-30 12:05:26 -070064 }
65
Muxi Yan37d3fba2017-02-28 16:14:40 -080066 s.ios.deployment_target = '7.0'
Jorge Canizalese487a722016-04-30 12:05:26 -070067 s.osx.deployment_target = '10.9'
68 s.requires_arc = false
69
70 name = 'grpc'
Jorge Canizalese487a722016-04-30 12:05:26 -070071
Jorge Canizalescc074d92016-06-28 09:52:43 -070072 # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework.
73 # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include
74 # <gRPC-Core/grpc.h>`.
75 s.module_name = name
76
77 # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of
78 # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`).
79 #
80 # TODO(jcanizales): Debug why this doesn't work on macOS.
Jorge Canizalese487a722016-04-30 12:05:26 -070081 s.header_mappings_dir = 'include/grpc'
82
Jorge Canizalescc074d92016-06-28 09:52:43 -070083 # The above has an undesired effect when creating a static library: It forces users to write
84 # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and
85 # because Cocoapods lets omit the pod name when including headers of static libraries, the
86 # following lets users write `#include <grpc/grpc.h>`.
87 s.header_dir = name
Jorge Canizalese487a722016-04-30 12:05:26 -070088
Jorge Canizalescc074d92016-06-28 09:52:43 -070089 # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core.
Jorge Canizales37750742016-06-08 20:10:20 -070090 s.module_map = 'include/grpc/module.modulemap'
91
Jorge Canizalescc074d92016-06-28 09:52:43 -070092 # To compile the library, we need the user headers search path (quoted includes) to point to the
93 # root of the repo, and the system headers search path (angled includes) to point to `include/`.
94 # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build
95 # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that.
96 #
97 # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it
98 # is taken as an implementation detail. We've asked for an alternative, and have been told that
99 # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386
100 #
101 # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from
102 # its remote repo. For local development of this library, enabled by using `:path` in the Podfile,
103 # that assumption is wrong. In such case, the following settings need to be reset with the
104 # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the
105 # Podfile; see `src/objective-c/tests/Podfile` for an example.
106 src_root = '$(PODS_ROOT)/gRPC-Core'
107 s.pod_target_xcconfig = {
108 'GRPC_SRC_ROOT' => src_root,
109 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
110 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
111 # If we don't set these two settings, `include/grpc/support/time.h` and
112 # `src/core/lib/support/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
113 # build.
114 'USE_HEADERMAP' => 'NO',
115 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
116 }
Jorge Canizales37750742016-06-08 20:10:20 -0700117
Muxi Yan37480eb2016-07-14 16:22:03 -0700118 s.default_subspecs = 'Interface', 'Implementation'
Yuchen Zeng9e4c8eb2016-11-18 01:06:57 -0800119 s.compiler_flags = '-DGRPC_ARES=0'
Muxi Yan37480eb2016-07-14 16:22:03 -0700120
Jorge Canizalescc074d92016-06-28 09:52:43 -0700121 # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its
122 # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't
123 # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in
124 # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason
125 # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one
126 # for public headers and the other for implementation. Each gets its own `header_mappings_dir`,
127 # making the linter happy.
128 #
129 # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It
130 # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`.
131 s.subspec 'Interface' do |ss|
132 ss.header_mappings_dir = 'include/grpc'
133
134 ss.source_files = ${ruby_multiline_list(grpc_public_headers(libs), 22)}
135 end
136 s.subspec 'Implementation' do |ss|
137 ss.header_mappings_dir = '.'
138 ss.libraries = 'z'
139 ss.dependency "#{s.name}/Interface", version
Muxi Yan690aee62017-01-27 02:52:47 +0000140 ss.dependency 'BoringSSL', '~> 8.0'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700141
142 # To save you from scrolling, this is the last part of the podspec.
143 ss.source_files = ${ruby_multiline_list(grpc_private_files(libs), 22)}
144
145 ss.private_header_files = ${ruby_multiline_list(grpc_private_headers(libs), 30)}
146 end
Muxi Yan37480eb2016-07-14 16:22:03 -0700147
148 s.subspec 'Cronet-Interface' do |ss|
149 ss.header_mappings_dir = 'include/grpc'
Muxi Yane38b0122017-03-16 20:53:41 -0700150 ss.source_files = 'include/grpc/grpc_cronet.h'
Muxi Yan37480eb2016-07-14 16:22:03 -0700151 end
152
Muxi Yanf8372c62016-07-29 09:58:55 -0700153 s.subspec 'Cronet-Implementation' do |ss|
Muxi Yan2a5072e2016-07-27 15:10:22 -0700154 ss.header_mappings_dir = '.'
Muxi Yane2de92f2017-01-31 16:30:52 -0800155
156 ss.dependency "#{s.name}/Interface", version
157 ss.dependency "#{s.name}/Implementation", version
158 ss.dependency "#{s.name}/Cronet-Interface", version
159
Muxi Yan2a5072e2016-07-27 15:10:22 -0700160 ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.c',
Muxi Yane38b0122017-03-16 20:53:41 -0700161 'src/core/ext/transport/cronet/transport/cronet_transport.{c,h}',
Muxi Yanf0a12692017-01-31 16:36:56 -0800162 'third_party/objective_c/Cronet/bidirectional_stream_c.h'
Muxi Yan2a5072e2016-07-27 15:10:22 -0700163 end
164
Muxi Yanf8372c62016-07-29 09:58:55 -0700165 s.subspec 'Tests' do |ss|
Muxi Yan37480eb2016-07-14 16:22:03 -0700166 ss.header_mappings_dir = '.'
167
Muxi Yane2de92f2017-01-31 16:30:52 -0800168 ss.dependency "#{s.name}/Interface", version
169 ss.dependency "#{s.name}/Implementation", version
170
Muxi Yan2a5072e2016-07-27 15:10:22 -0700171 ss.source_files = 'test/core/end2end/cq_verifier.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -0700172 'test/core/end2end/end2end_tests.{c,h}',
Muxi Yan53c4c282016-11-08 13:34:02 -0800173 'test/core/end2end/end2end_test_utils.c',
Muxi Yan37480eb2016-07-14 16:22:03 -0700174 'test/core/end2end/tests/*.{c,h}',
175 'test/core/end2end/data/*.{c,h}',
Muxi Yane38b0122017-03-16 20:53:41 -0700176 'test/core/util/debugger_macros.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -0700177 'test/core/util/test_config.{c,h}',
178 'test/core/util/port.h',
Craig Tiller46ab5f52017-02-28 08:40:19 -0800179 'test/core/util/port.c',
Muxi Yan37480eb2016-07-14 16:22:03 -0700180 'test/core/util/port_server_client.{c,h}'
Muxi Yan37480eb2016-07-14 16:22:03 -0700181 end
Jorge Canizalese487a722016-04-30 12:05:26 -0700182 end