aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc/module.modulemap
diff options
context:
space:
mode:
authorGravatar Jorge Canizales <jcanizales@google.com>2016-07-15 23:08:42 -0700
committerGravatar Jorge Canizales <jcanizales@google.com>2016-07-15 23:08:42 -0700
commit93bd780a9c3d9c38dc8f79efe663d0ffd169187d (patch)
tree4f5fa1ae86982d45c3ea59d5c00cd1fb8031761a /include/grpc/module.modulemap
parent9b45afbbc52977fc0c5a820c2eb2fb7276335822 (diff)
Solve warnings by adding headers not included by grpc.h
The two log.h can’t be listed, though, as they include the nefarious <inttypes.h> (See discussing at BoringSSL.podspec). Not listing them seems to be alright, though.
Diffstat (limited to 'include/grpc/module.modulemap')
-rw-r--r--include/grpc/module.modulemap10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/grpc/module.modulemap b/include/grpc/module.modulemap
index ae11a78b74..02fb2f39b2 100644
--- a/include/grpc/module.modulemap
+++ b/include/grpc/module.modulemap
@@ -1,5 +1,15 @@
framework module grpc {
umbrella header "grpc.h"
+
+ header "byte_buffer_reader.h"
+ header "grpc_security.h"
+ header "grpc_security_constants.h"
+ header "impl/codegen/alloc.h"
+ header "impl/codegen/byte_buffer_reader.h"
+ header "support/alloc.h"
+ header "support/port_platform.h"
+ header "support/string_util.h"
+
export *
module * { export * }
}