Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 1 | %YAML 1.2 |
| 2 | --- | |
Muxi Yan | 27e9db4 | 2017-01-30 09:21:05 -0800 | [diff] [blame] | 3 | # 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 Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 7 | |
Muxi Yan | 27e9db4 | 2017-01-30 09:21:05 -0800 | [diff] [blame] | 8 | # gRPC Core CocoaPods podspec |
| 9 | # |
Jan Tattermusch | 4d5c310 | 2017-06-07 10:23:56 +0200 | [diff] [blame] | 10 | # Copyright 2015 gRPC authors. |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 11 | # |
Jan Tattermusch | 4d5c310 | 2017-06-07 10:23:56 +0200 | [diff] [blame] | 12 | # 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 Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 15 | # |
Jan Tattermusch | 4d5c310 | 2017-06-07 10:23:56 +0200 | [diff] [blame] | 16 | # http://www.apache.org/licenses/LICENSE-2.0 |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 17 | # |
Jan Tattermusch | 4d5c310 | 2017-06-07 10:23:56 +0200 | [diff] [blame] | 18 | # 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 Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 23 | |
| 24 | <%! |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 25 | def grpc_lib_files(libs, expect_libs, groups): |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 26 | out = [] |
| 27 | for lib in libs: |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 28 | if lib.name in expect_libs: |
| 29 | for group in groups: |
| 30 | out += lib.get(group, []) |
| 31 | return out |
| 32 | |
| 33 | def grpc_private_files(libs): |
| 34 | out = grpc_lib_files(libs, ("grpc", "gpr"), ("headers", "src")) |
| 35 | return [file for file in out if not file.startswith("third_party/nanopb/")] |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 36 | |
| 37 | def grpc_public_headers(libs): |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 38 | out = grpc_lib_files(libs, ("grpc", "gpr"), ("public_headers",)) |
Muxi Yan | cd97297 | 2017-10-06 13:46:27 -0700 | [diff] [blame] | 39 | return out |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 40 | |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 41 | def grpc_private_headers(libs): |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 42 | out = grpc_lib_files(libs, ("grpc", "gpr"), ("headers",)) |
| 43 | return [file for file in out if not file.startswith("third_party/nanopb/")] |
| 44 | |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 45 | def grpc_cronet_files(libs): |
| 46 | out = grpc_lib_files(libs, ("grpc_cronet",), ("src", "headers")) |
| 47 | excl = grpc_private_files(libs) |
| 48 | excl += [ |
| 49 | # We do not need cronet dedicated plugin registry |
| 50 | "src/core/plugin_registry/grpc_cronet_plugin_registry.cc", |
| 51 | # We do not need dummy cronet API for ObjC |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 52 | "src/core/ext/transport/cronet/transport/cronet_api_dummy.cc", |
| 53 | ] |
| 54 | return [file for file in out if not file in excl] |
| 55 | |
| 56 | def grpc_cronet_public_headers(libs): |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 57 | out = grpc_lib_files(libs, ("grpc_cronet",), ("public_headers",)) |
| 58 | excl = grpc_public_headers(libs) |
| 59 | return [file for file in out if not file in excl] |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 60 | |
| 61 | def grpc_test_util_files(libs): |
| 62 | out = grpc_lib_files(libs, ("grpc_test_util", "gpr_test_util"), ("src", "headers")) |
| 63 | excl = grpc_private_files(libs) |
| 64 | return [file for file in out if not file in excl] |
| 65 | |
| 66 | def end2end_tests_files(libs): |
| 67 | out = grpc_lib_files(libs, ("end2end_tests",), ("src", "headers")) |
| 68 | excl = grpc_private_files(libs) |
| 69 | return [file for file in out if not file in excl] |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 70 | |
Muxi Yan | c512b4f | 2018-06-05 09:42:33 -0700 | [diff] [blame] | 71 | def cfstream_private_headers(libs): |
| 72 | out = grpc_lib_files(libs, ("grpc_cfstream",), ("own_headers",)) |
| 73 | return out |
| 74 | |
| 75 | def cfstream_private_files(libs): |
| 76 | out = grpc_lib_files(libs, ("grpc_cfstream",), ("own_src", "own_headers")) |
| 77 | return out |
| 78 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 79 | def ruby_multiline_list(files, indent): |
| 80 | return (',\n' + indent*' ').join('\'%s\'' % f for f in files) |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 81 | %> |
| 82 | Pod::Spec.new do |s| |
| 83 | s.name = 'gRPC-Core' |
Muxi Yan | 690aee6 | 2017-01-27 02:52:47 +0000 | [diff] [blame] | 84 | version = '${settings.version}' |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 85 | s.version = version |
| 86 | s.summary = 'Core cross-platform gRPC library, written in C' |
Mehrdad Afshari | bb3d95b | 2017-07-10 22:24:28 +0000 | [diff] [blame] | 87 | s.homepage = 'https://grpc.io' |
Jan Tattermusch | 4d5c310 | 2017-06-07 10:23:56 +0200 | [diff] [blame] | 88 | s.license = 'Apache License, Version 2.0' |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 89 | s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' } |
| 90 | |
| 91 | s.source = { |
| 92 | :git => 'https://github.com/grpc/grpc.git', |
Muxi Yan | 690aee6 | 2017-01-27 02:52:47 +0000 | [diff] [blame] | 93 | :tag => "v#{version}", |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Muxi Yan | 3d2081b | 2017-10-31 10:27:46 -0700 | [diff] [blame] | 96 | # gRPC podspecs depend on fix for https://github.com/CocoaPods/CocoaPods/issues/6024, |
| 97 | # which was released in Cocoapods v1.2.0. |
| 98 | s.cocoapods_version = '>= 1.2.0' |
| 99 | |
Muxi Yan | 37d3fba | 2017-02-28 16:14:40 -0800 | [diff] [blame] | 100 | s.ios.deployment_target = '7.0' |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 101 | s.osx.deployment_target = '10.9' |
| 102 | s.requires_arc = false |
| 103 | |
| 104 | name = 'grpc' |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 105 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 106 | # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework. |
| 107 | # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include |
| 108 | # <gRPC-Core/grpc.h>`. |
| 109 | s.module_name = name |
| 110 | |
| 111 | # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of |
| 112 | # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`). |
| 113 | # |
| 114 | # TODO(jcanizales): Debug why this doesn't work on macOS. |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 115 | s.header_mappings_dir = 'include/grpc' |
| 116 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 117 | # The above has an undesired effect when creating a static library: It forces users to write |
| 118 | # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and |
| 119 | # because Cocoapods lets omit the pod name when including headers of static libraries, the |
| 120 | # following lets users write `#include <grpc/grpc.h>`. |
| 121 | s.header_dir = name |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 122 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 123 | # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core. |
Jorge Canizales | 3775074 | 2016-06-08 20:10:20 -0700 | [diff] [blame] | 124 | s.module_map = 'include/grpc/module.modulemap' |
| 125 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 126 | # To compile the library, we need the user headers search path (quoted includes) to point to the |
| 127 | # root of the repo, and the system headers search path (angled includes) to point to `include/`. |
| 128 | # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build |
| 129 | # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that. |
| 130 | # |
| 131 | # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it |
| 132 | # is taken as an implementation detail. We've asked for an alternative, and have been told that |
| 133 | # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386 |
| 134 | # |
| 135 | # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from |
| 136 | # its remote repo. For local development of this library, enabled by using `:path` in the Podfile, |
| 137 | # that assumption is wrong. In such case, the following settings need to be reset with the |
| 138 | # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the |
| 139 | # Podfile; see `src/objective-c/tests/Podfile` for an example. |
| 140 | src_root = '$(PODS_ROOT)/gRPC-Core' |
| 141 | s.pod_target_xcconfig = { |
| 142 | 'GRPC_SRC_ROOT' => src_root, |
| 143 | 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"', |
| 144 | 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"', |
| 145 | # If we don't set these two settings, `include/grpc/support/time.h` and |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 146 | # `src/core/lib/gpr/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 147 | # build. |
| 148 | 'USE_HEADERMAP' => 'NO', |
| 149 | 'ALWAYS_SEARCH_USER_PATHS' => 'NO', |
Muxi Yan | 9ecc215 | 2017-09-29 17:08:59 -0700 | [diff] [blame] | 150 | 'GCC_PREPROCESSOR_DEFINITIONS' => '"$(inherited)" "COCOAPODS=1" "PB_NO_PACKED_STRUCTS=1"', |
Muxi Yan | 94d669e | 2017-10-22 14:56:10 -0700 | [diff] [blame] | 151 | 'CLANG_WARN_STRICT_PROTOTYPES' => 'NO', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 152 | } |
Jorge Canizales | 3775074 | 2016-06-08 20:10:20 -0700 | [diff] [blame] | 153 | |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 154 | s.default_subspecs = 'Interface', 'Implementation' |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 155 | s.compiler_flags = '-DGRPC_ARES=0', '-DPB_FIELD_16BIT' |
Muxi Yan | ae6bca4 | 2017-10-19 18:14:02 -0700 | [diff] [blame] | 156 | s.libraries = 'c++' |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 157 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 158 | # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its |
| 159 | # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't |
| 160 | # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in |
| 161 | # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason |
| 162 | # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one |
| 163 | # for public headers and the other for implementation. Each gets its own `header_mappings_dir`, |
| 164 | # making the linter happy. |
| 165 | # |
| 166 | # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It |
| 167 | # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`. |
| 168 | s.subspec 'Interface' do |ss| |
| 169 | ss.header_mappings_dir = 'include/grpc' |
| 170 | |
| 171 | ss.source_files = ${ruby_multiline_list(grpc_public_headers(libs), 22)} |
| 172 | end |
| 173 | s.subspec 'Implementation' do |ss| |
| 174 | ss.header_mappings_dir = '.' |
| 175 | ss.libraries = 'z' |
| 176 | ss.dependency "#{s.name}/Interface", version |
Matt Kwong | 74958c5 | 2018-01-30 11:52:02 -0800 | [diff] [blame] | 177 | ss.dependency 'BoringSSL', '~> 10.0' |
Muxi Yan | ad272c9 | 2017-06-29 16:18:43 -0700 | [diff] [blame] | 178 | ss.dependency 'nanopb', '~> 0.3' |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 179 | |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 180 | # To save you from scrolling, this is the last part of the podspec. |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 181 | ss.source_files = ${ruby_multiline_list(grpc_private_files(libs), 22)} |
| 182 | |
| 183 | ss.private_header_files = ${ruby_multiline_list(grpc_private_headers(libs), 30)} |
| 184 | end |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 185 | |
Muxi Yan | 67ff405 | 2018-05-15 12:36:10 -0700 | [diff] [blame] | 186 | s.subspec 'CFStream-Implementation' do |ss| |
| 187 | ss.header_mappings_dir = '.' |
| 188 | ss.dependency "#{s.name}/Implementation", version |
| 189 | ss.pod_target_xcconfig = { |
| 190 | 'GCC_PREPROCESSOR_DEFINITIONS' => 'GRPC_CFSTREAM=1' |
| 191 | } |
Muxi Yan | c512b4f | 2018-06-05 09:42:33 -0700 | [diff] [blame] | 192 | ss.source_files = ${ruby_multiline_list(cfstream_private_files(filegroups), 22)} |
| 193 | ss.private_header_files = ${ruby_multiline_list(cfstream_private_headers(filegroups), 30)} |
Muxi Yan | 67ff405 | 2018-05-15 12:36:10 -0700 | [diff] [blame] | 194 | end |
| 195 | |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 196 | s.subspec 'Cronet-Interface' do |ss| |
| 197 | ss.header_mappings_dir = 'include/grpc' |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 198 | ss.source_files = ${ruby_multiline_list(grpc_cronet_public_headers(libs), 22)} |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 199 | end |
| 200 | |
Muxi Yan | f8372c6 | 2016-07-29 09:58:55 -0700 | [diff] [blame] | 201 | s.subspec 'Cronet-Implementation' do |ss| |
Muxi Yan | 2a5072e | 2016-07-27 15:10:22 -0700 | [diff] [blame] | 202 | ss.header_mappings_dir = '.' |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 203 | |
| 204 | ss.dependency "#{s.name}/Interface", version |
| 205 | ss.dependency "#{s.name}/Implementation", version |
Muxi Yan | e2de92f | 2017-01-31 16:30:52 -0800 | [diff] [blame] | 206 | ss.dependency "#{s.name}/Cronet-Interface", version |
| 207 | |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 208 | ss.source_files = ${ruby_multiline_list(grpc_cronet_files(libs), 22)} |
Muxi Yan | 2a5072e | 2016-07-27 15:10:22 -0700 | [diff] [blame] | 209 | end |
| 210 | |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 211 | s.subspec 'Tests' do |ss| |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 212 | ss.header_mappings_dir = '.' |
| 213 | |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 214 | ss.dependency "#{s.name}/Interface", version |
| 215 | ss.dependency "#{s.name}/Implementation", version |
Muxi Yan | e2de92f | 2017-01-31 16:30:52 -0800 | [diff] [blame] | 216 | |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 217 | ss.source_files = ${ruby_multiline_list(grpc_test_util_files(libs), 22)}, |
| 218 | ${ruby_multiline_list(end2end_tests_files(libs), 22)} |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 219 | end |
Muxi Yan | 43c4710 | 2017-07-06 20:51:49 -0700 | [diff] [blame] | 220 | |
| 221 | # TODO (mxyan): Instead of this hack, add include path "third_party" to C core's include path? |
| 222 | s.prepare_command = <<-END_OF_COMMAND |
Muxi Yan | 40beafa | 2018-03-08 15:36:33 -0800 | [diff] [blame] | 223 | find src/core/ -type f ! -path '*.back*' -exec sed -E -i'.back' 's;#include "third_party/nanopb/(.*)";#include <nanopb/\\1>;g' {} \\\; |
Muxi Yan | 43c4710 | 2017-07-06 20:51:49 -0700 | [diff] [blame] | 224 | END_OF_COMMAND |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 225 | end |