blob: fbad1a3f709d96155f662921ae48f82b1f66108e [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 Yan447d0a22016-10-25 14:14:12 -070065 version = '1.0.1'
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',
Jorge Canizales4a18c672016-08-18 13:26:25 -070074 :tag => "v#{version}",
Jorge Canizalescc074d92016-06-28 09:52:43 -070075 # TODO(jcanizales): Depend explicitly on the nanopb pod, and disable submodules.
Jorge Canizales66c8ddd2016-06-08 17:39:40 -070076 :submodules => true,
Jorge Canizalese487a722016-04-30 12:05:26 -070077 }
78
79 s.ios.deployment_target = '7.1'
80 s.osx.deployment_target = '10.9'
81 s.requires_arc = false
82
83 name = 'grpc'
Jorge Canizalese487a722016-04-30 12:05:26 -070084
Jorge Canizalescc074d92016-06-28 09:52:43 -070085 # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework.
86 # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include
87 # <gRPC-Core/grpc.h>`.
88 s.module_name = name
89
90 # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of
91 # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`).
92 #
93 # TODO(jcanizales): Debug why this doesn't work on macOS.
Jorge Canizalese487a722016-04-30 12:05:26 -070094 s.header_mappings_dir = 'include/grpc'
95
Jorge Canizalescc074d92016-06-28 09:52:43 -070096 # The above has an undesired effect when creating a static library: It forces users to write
97 # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and
98 # because Cocoapods lets omit the pod name when including headers of static libraries, the
99 # following lets users write `#include <grpc/grpc.h>`.
100 s.header_dir = name
Jorge Canizalese487a722016-04-30 12:05:26 -0700101
Jorge Canizalescc074d92016-06-28 09:52:43 -0700102 # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core.
Jorge Canizales37750742016-06-08 20:10:20 -0700103 s.module_map = 'include/grpc/module.modulemap'
104
Jorge Canizalescc074d92016-06-28 09:52:43 -0700105 # To compile the library, we need the user headers search path (quoted includes) to point to the
106 # root of the repo, and the system headers search path (angled includes) to point to `include/`.
107 # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build
108 # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that.
109 #
110 # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it
111 # is taken as an implementation detail. We've asked for an alternative, and have been told that
112 # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386
113 #
114 # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from
115 # its remote repo. For local development of this library, enabled by using `:path` in the Podfile,
116 # that assumption is wrong. In such case, the following settings need to be reset with the
117 # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the
118 # Podfile; see `src/objective-c/tests/Podfile` for an example.
119 src_root = '$(PODS_ROOT)/gRPC-Core'
120 s.pod_target_xcconfig = {
121 'GRPC_SRC_ROOT' => src_root,
122 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
123 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
124 # If we don't set these two settings, `include/grpc/support/time.h` and
125 # `src/core/lib/support/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
126 # build.
127 'USE_HEADERMAP' => 'NO',
128 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
129 }
Jorge Canizales37750742016-06-08 20:10:20 -0700130
Muxi Yan37480eb2016-07-14 16:22:03 -0700131 s.default_subspecs = 'Interface', 'Implementation'
132
Jorge Canizalescc074d92016-06-28 09:52:43 -0700133 # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its
134 # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't
135 # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in
136 # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason
137 # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one
138 # for public headers and the other for implementation. Each gets its own `header_mappings_dir`,
139 # making the linter happy.
140 #
141 # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It
142 # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`.
143 s.subspec 'Interface' do |ss|
144 ss.header_mappings_dir = 'include/grpc'
145
146 ss.source_files = ${ruby_multiline_list(grpc_public_headers(libs), 22)}
147 end
148 s.subspec 'Implementation' do |ss|
149 ss.header_mappings_dir = '.'
150 ss.libraries = 'z'
151 ss.dependency "#{s.name}/Interface", version
Muxi Yan6fd881e2016-10-21 14:46:01 -0700152 ss.dependency 'BoringSSL', '~> 7.0'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700153
154 # To save you from scrolling, this is the last part of the podspec.
155 ss.source_files = ${ruby_multiline_list(grpc_private_files(libs), 22)}
156
157 ss.private_header_files = ${ruby_multiline_list(grpc_private_headers(libs), 30)}
158 end
Muxi Yan37480eb2016-07-14 16:22:03 -0700159
160 s.subspec 'Cronet-Interface' do |ss|
161 ss.header_mappings_dir = 'include/grpc'
162 ss.source_files = 'include/grpc/grpc_cronet.h'
163 end
164
Muxi Yanf8372c62016-07-29 09:58:55 -0700165 s.subspec 'Cronet-Implementation' do |ss|
Muxi Yan2a5072e2016-07-27 15:10:22 -0700166 ss.header_mappings_dir = '.'
167 ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.c',
168 'src/core/ext/transport/cronet/transport/cronet_transport.c'
169 end
170
Muxi Yanf8372c62016-07-29 09:58:55 -0700171 s.subspec 'Tests' do |ss|
Muxi Yan37480eb2016-07-14 16:22:03 -0700172 ss.header_mappings_dir = '.'
173
Muxi Yan2a5072e2016-07-27 15:10:22 -0700174 ss.source_files = 'test/core/end2end/cq_verifier.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -0700175 'test/core/end2end/end2end_tests.{c,h}',
Muxi Yan53c4c282016-11-08 13:34:02 -0800176 'test/core/end2end/end2end_test_utils.c',
Muxi Yan37480eb2016-07-14 16:22:03 -0700177 'test/core/end2end/tests/*.{c,h}',
178 'test/core/end2end/data/*.{c,h}',
179 'test/core/util/test_config.{c,h}',
180 'test/core/util/port.h',
181 'test/core/util/port_posix.c',
182 'test/core/util/port_server_client.{c,h}'
183
184 ss.dependency 'CronetFramework'
185 end
Jorge Canizalese487a722016-04-30 12:05:26 -0700186 end