blob: 758ccc7da36651395413bf2e71637a580e7c734d [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', [])
Muxi Yand89b9e32017-06-29 14:31:59 -070031 return [f for f in out if not f.startswith("third_party/nanopb/")]
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', [])
Muxi Yancd972972017-10-06 13:46:27 -070038 return out
Jorge Canizalescc074d92016-06-28 09:52:43 -070039
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', [])
Muxi Yand89b9e32017-06-29 14:31:59 -070045 return [f for f in out if not f.startswith("third_party/nanopb/")]
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'
Mehrdad Afsharibb3d95b2017-07-10 22:24:28 +000055 s.homepage = 'https://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 Canizalese487a722016-04-30 12:05:26 -070062 }
63
Muxi Yan3d2081b2017-10-31 10:27:46 -070064 # gRPC podspecs depend on fix for https://github.com/CocoaPods/CocoaPods/issues/6024,
65 # which was released in Cocoapods v1.2.0.
66 s.cocoapods_version = '>= 1.2.0'
67
Muxi Yan37d3fba2017-02-28 16:14:40 -080068 s.ios.deployment_target = '7.0'
Jorge Canizalese487a722016-04-30 12:05:26 -070069 s.osx.deployment_target = '10.9'
70 s.requires_arc = false
71
72 name = 'grpc'
Jorge Canizalese487a722016-04-30 12:05:26 -070073
Jorge Canizalescc074d92016-06-28 09:52:43 -070074 # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework.
75 # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include
76 # <gRPC-Core/grpc.h>`.
77 s.module_name = name
78
79 # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of
80 # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`).
81 #
82 # TODO(jcanizales): Debug why this doesn't work on macOS.
Jorge Canizalese487a722016-04-30 12:05:26 -070083 s.header_mappings_dir = 'include/grpc'
84
Jorge Canizalescc074d92016-06-28 09:52:43 -070085 # The above has an undesired effect when creating a static library: It forces users to write
86 # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and
87 # because Cocoapods lets omit the pod name when including headers of static libraries, the
88 # following lets users write `#include <grpc/grpc.h>`.
89 s.header_dir = name
Jorge Canizalese487a722016-04-30 12:05:26 -070090
Jorge Canizalescc074d92016-06-28 09:52:43 -070091 # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core.
Jorge Canizales37750742016-06-08 20:10:20 -070092 s.module_map = 'include/grpc/module.modulemap'
93
Jorge Canizalescc074d92016-06-28 09:52:43 -070094 # To compile the library, we need the user headers search path (quoted includes) to point to the
95 # root of the repo, and the system headers search path (angled includes) to point to `include/`.
96 # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build
97 # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that.
98 #
99 # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it
100 # is taken as an implementation detail. We've asked for an alternative, and have been told that
101 # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386
102 #
103 # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from
104 # its remote repo. For local development of this library, enabled by using `:path` in the Podfile,
105 # that assumption is wrong. In such case, the following settings need to be reset with the
106 # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the
107 # Podfile; see `src/objective-c/tests/Podfile` for an example.
108 src_root = '$(PODS_ROOT)/gRPC-Core'
109 s.pod_target_xcconfig = {
110 'GRPC_SRC_ROOT' => src_root,
111 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
112 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
113 # If we don't set these two settings, `include/grpc/support/time.h` and
114 # `src/core/lib/support/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
115 # build.
116 'USE_HEADERMAP' => 'NO',
117 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
Muxi Yan9ecc2152017-09-29 17:08:59 -0700118 'GCC_PREPROCESSOR_DEFINITIONS' => '"$(inherited)" "COCOAPODS=1" "PB_NO_PACKED_STRUCTS=1"',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700119 }
Jorge Canizales37750742016-06-08 20:10:20 -0700120
Muxi Yan37480eb2016-07-14 16:22:03 -0700121 s.default_subspecs = 'Interface', 'Implementation'
Yuchen Zeng9e4c8eb2016-11-18 01:06:57 -0800122 s.compiler_flags = '-DGRPC_ARES=0'
Muxi Yanae6bca42017-10-19 18:14:02 -0700123 s.libraries = 'c++'
Muxi Yan37480eb2016-07-14 16:22:03 -0700124
Jorge Canizalescc074d92016-06-28 09:52:43 -0700125 # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its
126 # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't
127 # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in
128 # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason
129 # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one
130 # for public headers and the other for implementation. Each gets its own `header_mappings_dir`,
131 # making the linter happy.
132 #
133 # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It
134 # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`.
135 s.subspec 'Interface' do |ss|
136 ss.header_mappings_dir = 'include/grpc'
137
138 ss.source_files = ${ruby_multiline_list(grpc_public_headers(libs), 22)}
139 end
140 s.subspec 'Implementation' do |ss|
141 ss.header_mappings_dir = '.'
142 ss.libraries = 'z'
143 ss.dependency "#{s.name}/Interface", version
Muxi Yanc0d3bab2017-07-10 11:21:37 -0700144 ss.dependency 'BoringSSL', '~> 9.0'
Muxi Yanad272c92017-06-29 16:18:43 -0700145 ss.dependency 'nanopb', '~> 0.3'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700146
147 # To save you from scrolling, this is the last part of the podspec.
148 ss.source_files = ${ruby_multiline_list(grpc_private_files(libs), 22)}
149
150 ss.private_header_files = ${ruby_multiline_list(grpc_private_headers(libs), 30)}
151 end
Muxi Yan37480eb2016-07-14 16:22:03 -0700152
153 s.subspec 'Cronet-Interface' do |ss|
154 ss.header_mappings_dir = 'include/grpc'
Muxi Yane38b0122017-03-16 20:53:41 -0700155 ss.source_files = 'include/grpc/grpc_cronet.h'
Muxi Yan37480eb2016-07-14 16:22:03 -0700156 end
157
Muxi Yanf8372c62016-07-29 09:58:55 -0700158 s.subspec 'Cronet-Implementation' do |ss|
Muxi Yan2a5072e2016-07-27 15:10:22 -0700159 ss.header_mappings_dir = '.'
Muxi Yane2de92f2017-01-31 16:30:52 -0800160
161 ss.dependency "#{s.name}/Interface", version
162 ss.dependency "#{s.name}/Implementation", version
163 ss.dependency "#{s.name}/Cronet-Interface", version
164
Yash Tibrewaldabce0a2017-10-04 11:58:02 -0700165 ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.cc',
166 'src/core/ext/transport/cronet/transport/cronet_transport.{cc,h}',
Muxi Yanf0a12692017-01-31 16:36:56 -0800167 'third_party/objective_c/Cronet/bidirectional_stream_c.h'
Muxi Yan2a5072e2016-07-27 15:10:22 -0700168 end
169
Muxi Yanf8372c62016-07-29 09:58:55 -0700170 s.subspec 'Tests' do |ss|
Muxi Yan37480eb2016-07-14 16:22:03 -0700171 ss.header_mappings_dir = '.'
172
Muxi Yane2de92f2017-01-31 16:30:52 -0800173 ss.dependency "#{s.name}/Interface", version
174 ss.dependency "#{s.name}/Implementation", version
175
Muxi Yan2a5072e2016-07-27 15:10:22 -0700176 ss.source_files = 'test/core/end2end/cq_verifier.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -0700177 'test/core/end2end/end2end_tests.{c,h}',
Muxi Yan53c4c282016-11-08 13:34:02 -0800178 'test/core/end2end/end2end_test_utils.c',
Muxi Yan37480eb2016-07-14 16:22:03 -0700179 'test/core/end2end/tests/*.{c,h}',
Muxi Yanf0a6fd82017-08-31 14:31:03 -0700180 'test/core/end2end/fixtures/*.h',
Muxi Yan37480eb2016-07-14 16:22:03 -0700181 'test/core/end2end/data/*.{c,h}',
Muxi Yan44d820e2017-10-24 13:27:39 -0700182 'test/core/util/debugger_macros.{cc,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -0700183 'test/core/util/test_config.{c,h}',
184 'test/core/util/port.h',
Craig Tiller46ab5f52017-02-28 08:40:19 -0800185 'test/core/util/port.c',
Muxi Yan37480eb2016-07-14 16:22:03 -0700186 'test/core/util/port_server_client.{c,h}'
Muxi Yan37480eb2016-07-14 16:22:03 -0700187 end
Muxi Yan43c47102017-07-06 20:51:49 -0700188
189 # TODO (mxyan): Instead of this hack, add include path "third_party" to C core's include path?
190 s.prepare_command = <<-END_OF_COMMAND
191 find src/core/ -type f -exec sed -E -i '.back' 's;#include "third_party/nanopb/(.*)";#include <nanopb/\\1>;g' {} \\\;
192 END_OF_COMMAND
Jorge Canizalese487a722016-04-30 12:05:26 -0700193 end