diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-03-27 01:29:22 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-03-27 01:29:22 +0100 |
commit | 65c5efb4096395c576dafce810c45d910810af29 (patch) | |
tree | 65da0a9ad70e6d551358b8324450629802b80e7b | |
parent | a8c7c201a46b14b3101b72025b1968a40b619a62 (diff) |
Private headers shouldn't be public...
-rw-r--r-- | Makefile | 10 | ||||
-rw-r--r-- | build.json | 2 |
2 files changed, 1 insertions, 11 deletions
@@ -3595,16 +3595,6 @@ LIBGRPC_PLUGIN_SUPPORT_SRC = \ src/compiler/python_generator.cc \ src/compiler/ruby_generator.cc \ -PUBLIC_HEADERS_CXX += \ - src/compiler/config.h \ - src/compiler/cpp_generator.h \ - src/compiler/cpp_generator_helpers.h \ - src/compiler/generator_helpers.h \ - src/compiler/python_generator.h \ - src/compiler/ruby_generator.h \ - src/compiler/ruby_generator_helpers-inl.h \ - src/compiler/ruby_generator_map-inl.h \ - src/compiler/ruby_generator_string-inl.h \ LIBGRPC_PLUGIN_SUPPORT_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_PLUGIN_SUPPORT_SRC)))) diff --git a/build.json b/build.json index 0d53bd6031..2fa2ac9cdd 100644 --- a/build.json +++ b/build.json @@ -502,7 +502,7 @@ "name": "grpc_plugin_support", "build": "protoc", "language": "c++", - "public_headers": [ + "headers": [ "src/compiler/config.h", "src/compiler/cpp_generator.h", "src/compiler/cpp_generator_helpers.h", |