diff options
author | Muxi Yan <mxyan@google.com> | 2017-10-06 13:46:27 -0700 |
---|---|---|
committer | Muxi Yan <mxyan@google.com> | 2017-10-06 17:44:36 -0700 |
commit | cd9729780afcb8894709ec19175a3a5cf337a78f (patch) | |
tree | 7e60c7f9ffdb4b9b1d0cdf10b2085977975719f0 /templates/gRPC-Core.podspec.template | |
parent | 656041b3cc7c1a4549154f062dc8004247e97051 (diff) |
Make platform-specific headers textual
Diffstat (limited to 'templates/gRPC-Core.podspec.template')
-rw-r--r-- | templates/gRPC-Core.podspec.template | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/templates/gRPC-Core.podspec.template b/templates/gRPC-Core.podspec.template index f3ac30c08d..5657df8521 100644 --- a/templates/gRPC-Core.podspec.template +++ b/templates/gRPC-Core.podspec.template @@ -31,19 +31,11 @@ return [f for f in out if not f.startswith("third_party/nanopb/")] def grpc_public_headers(libs): - excluded_files = ["include/grpc/support/atm_gcc_sync.h", - "include/grpc/support/atm_windows.h", - "include/grpc/support/sync_windows.h", - "include/grpc/support/tls_gcc.h", - "include/grpc/support/tls_msvc.h", - "include/grpc/impl/codegen/atm_gcc_sync.h", - "include/grpc/impl/codegen/atm_windows.h", - "include/grpc/impl/codegen/sync_windows.h"] out = [] for lib in libs: if lib.name in ("grpc", "gpr"): out += lib.get('public_headers', []) - return [f for f in out if not f in excluded_files] + return out def grpc_private_headers(libs): out = [] |