blob: 0738b7221b58b065efccd13d9cbb494ba7e4cd21 [file] [log] [blame]
Jorge Canizalese487a722016-04-30 12:05:26 -07001%YAML 1.2
2--- |
3 # GRPC CocoaPods podspec
Jorge Canizales667557f2016-06-09 09:15:28 -07004 # This file has been automatically generated from a template file. Please make modifications to
5 # `templates/gRPC-Core.podspec.template` instead. This file can be regenerated from the template by
6 # running `tools/buildgen/generate_projects.sh`.
Jorge Canizalese487a722016-04-30 12:05:26 -07007
8 # Copyright 2015, Google Inc.
9 # All rights reserved.
10 #
11 # Redistribution and use in source and binary forms, with or without
12 # modification, are permitted provided that the following conditions are
13 # met:
14 #
15 # * Redistributions of source code must retain the above copyright
16 # notice, this list of conditions and the following disclaimer.
17 # * Redistributions in binary form must reproduce the above
18 # copyright notice, this list of conditions and the following disclaimer
19 # in the documentation and/or other materials provided with the
20 # distribution.
21 # * Neither the name of Google Inc. nor the names of its
22 # contributors may be used to endorse or promote products derived from
23 # this software without specific prior written permission.
24 #
25 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
37 <%!
Jorge Canizalescc074d92016-06-28 09:52:43 -070038 def grpc_private_files(libs):
Jorge Canizalese487a722016-04-30 12:05:26 -070039 out = []
40 for lib in libs:
41 if lib.name in ("grpc", "gpr"):
42 out += lib.get('headers', [])
Jorge Canizalese487a722016-04-30 12:05:26 -070043 out += lib.get('src', [])
44 return out;
Jorge Canizalescc074d92016-06-28 09:52:43 -070045
46 def grpc_public_headers(libs):
47 out = []
48 for lib in libs:
49 if lib.name in ("grpc", "gpr"):
50 out += lib.get('public_headers', [])
51 return out
52
Jorge Canizalese487a722016-04-30 12:05:26 -070053 def grpc_private_headers(libs):
54 out = []
55 for lib in libs:
56 if lib.name in ("grpc", "gpr"):
57 out += lib.get('headers', [])
58 return out
Jorge Canizalescc074d92016-06-28 09:52:43 -070059
60 def ruby_multiline_list(files, indent):
61 return (',\n' + indent*' ').join('\'%s\'' % f for f in files)
Jorge Canizalese487a722016-04-30 12:05:26 -070062 %>
63 Pod::Spec.new do |s|
64 s.name = 'gRPC-Core'
Muxi Yana7f03f62016-11-28 11:29:19 -080065 version = '1.0.2'
Jorge Canizalese487a722016-04-30 12:05:26 -070066 s.version = version
67 s.summary = 'Core cross-platform gRPC library, written in C'
68 s.homepage = 'http://www.grpc.io'
69 s.license = 'New BSD'
70 s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' }
71
72 s.source = {
73 :git => 'https://github.com/grpc/grpc.git',
Muxi Yana7f03f62016-11-28 11:29:19 -080074 # TODO(mxyan): Change back to "v#{version}" for next release
75 #:tag => "v#{version}",
76 :tag => "objective-c-v#{version}",
Jorge Canizalescc074d92016-06-28 09:52:43 -070077 # TODO(jcanizales): Depend explicitly on the nanopb pod, and disable submodules.
Jorge Canizales66c8ddd2016-06-08 17:39:40 -070078 :submodules => true,
Jorge Canizalese487a722016-04-30 12:05:26 -070079 }
80
81 s.ios.deployment_target = '7.1'
82 s.osx.deployment_target = '10.9'
83 s.requires_arc = false
84
85 name = 'grpc'
Jorge Canizalese487a722016-04-30 12:05:26 -070086
Jorge Canizalescc074d92016-06-28 09:52:43 -070087 # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework.
88 # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include
89 # <gRPC-Core/grpc.h>`.
90 s.module_name = name
91
92 # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of
93 # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`).
94 #
95 # TODO(jcanizales): Debug why this doesn't work on macOS.
Jorge Canizalese487a722016-04-30 12:05:26 -070096 s.header_mappings_dir = 'include/grpc'
97
Jorge Canizalescc074d92016-06-28 09:52:43 -070098 # The above has an undesired effect when creating a static library: It forces users to write
99 # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and
100 # because Cocoapods lets omit the pod name when including headers of static libraries, the
101 # following lets users write `#include <grpc/grpc.h>`.
102 s.header_dir = name
Jorge Canizalese487a722016-04-30 12:05:26 -0700103
Jorge Canizalescc074d92016-06-28 09:52:43 -0700104 # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core.
Jorge Canizales37750742016-06-08 20:10:20 -0700105 s.module_map = 'include/grpc/module.modulemap'
106
Jorge Canizalescc074d92016-06-28 09:52:43 -0700107 # To compile the library, we need the user headers search path (quoted includes) to point to the
108 # root of the repo, and the system headers search path (angled includes) to point to `include/`.
109 # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build
110 # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that.
111 #
112 # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it
113 # is taken as an implementation detail. We've asked for an alternative, and have been told that
114 # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386
115 #
116 # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from
117 # its remote repo. For local development of this library, enabled by using `:path` in the Podfile,
118 # that assumption is wrong. In such case, the following settings need to be reset with the
119 # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the
120 # Podfile; see `src/objective-c/tests/Podfile` for an example.
121 src_root = '$(PODS_ROOT)/gRPC-Core'
122 s.pod_target_xcconfig = {
123 'GRPC_SRC_ROOT' => src_root,
124 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
125 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
126 # If we don't set these two settings, `include/grpc/support/time.h` and
127 # `src/core/lib/support/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
128 # build.
129 'USE_HEADERMAP' => 'NO',
130 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
131 }
Jorge Canizales37750742016-06-08 20:10:20 -0700132
Muxi Yan37480eb2016-07-14 16:22:03 -0700133 s.default_subspecs = 'Interface', 'Implementation'
134
Jorge Canizalescc074d92016-06-28 09:52:43 -0700135 # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its
136 # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't
137 # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in
138 # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason
139 # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one
140 # for public headers and the other for implementation. Each gets its own `header_mappings_dir`,
141 # making the linter happy.
142 #
143 # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It
144 # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`.
145 s.subspec 'Interface' do |ss|
146 ss.header_mappings_dir = 'include/grpc'
147
148 ss.source_files = ${ruby_multiline_list(grpc_public_headers(libs), 22)}
149 end
150 s.subspec 'Implementation' do |ss|
151 ss.header_mappings_dir = '.'
152 ss.libraries = 'z'
153 ss.dependency "#{s.name}/Interface", version
Muxi Yan6fd881e2016-10-21 14:46:01 -0700154 ss.dependency 'BoringSSL', '~> 7.0'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700155
156 # To save you from scrolling, this is the last part of the podspec.
157 ss.source_files = ${ruby_multiline_list(grpc_private_files(libs), 22)}
158
159 ss.private_header_files = ${ruby_multiline_list(grpc_private_headers(libs), 30)}
160 end
Muxi Yan37480eb2016-07-14 16:22:03 -0700161
162 s.subspec 'Cronet-Interface' do |ss|
163 ss.header_mappings_dir = 'include/grpc'
Muxi Yan0a2fae92017-02-01 14:49:03 -0800164 ss.source_files = 'include/grpc/grpc_cronet.h',
165 'src/core/ext/transport/cronet/transport/cronet_transport.h'
Muxi Yan37480eb2016-07-14 16:22:03 -0700166 end
167
Muxi Yanf8372c62016-07-29 09:58:55 -0700168 s.subspec 'Cronet-Implementation' do |ss|
Muxi Yan2a5072e2016-07-27 15:10:22 -0700169 ss.header_mappings_dir = '.'
170 ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.c',
171 'src/core/ext/transport/cronet/transport/cronet_transport.c'
172 end
173
Muxi Yanf8372c62016-07-29 09:58:55 -0700174 s.subspec 'Tests' do |ss|
Muxi Yan37480eb2016-07-14 16:22:03 -0700175 ss.header_mappings_dir = '.'
176
Muxi Yan2a5072e2016-07-27 15:10:22 -0700177 ss.source_files = 'test/core/end2end/cq_verifier.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -0700178 'test/core/end2end/end2end_tests.{c,h}',
Muxi Yan53c4c282016-11-08 13:34:02 -0800179 'test/core/end2end/end2end_test_utils.c',
Muxi Yan37480eb2016-07-14 16:22:03 -0700180 'test/core/end2end/tests/*.{c,h}',
181 'test/core/end2end/data/*.{c,h}',
182 'test/core/util/test_config.{c,h}',
183 'test/core/util/port.h',
184 'test/core/util/port_posix.c',
185 'test/core/util/port_server_client.{c,h}'
186
187 ss.dependency 'CronetFramework'
188 end
Jorge Canizalese487a722016-04-30 12:05:26 -0700189 end