aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile3
-rw-r--r--build.json6
-rw-r--r--src/node/package.json10
3 files changed, 17 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fc11670d7a..91c94c8071 100644
--- a/Makefile
+++ b/Makefile
@@ -3064,12 +3064,15 @@ PUBLIC_HEADERS_CXX += \
include/grpc++/impl/internal_stub.h \
include/grpc++/impl/rpc_method.h \
include/grpc++/impl/rpc_service_method.h \
+ include/grpc++/impl/service_type.h \
include/grpc++/server.h \
include/grpc++/server_builder.h \
include/grpc++/server_context.h \
include/grpc++/server_credentials.h \
include/grpc++/status.h \
+ include/grpc++/status_code_enum.h \
include/grpc++/stream.h \
+ include/grpc++/thread_pool_interface.h \
LIBGRPC++_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_SRC))))
diff --git a/build.json b/build.json
index c7c640d2c2..0f9e827422 100644
--- a/build.json
+++ b/build.json
@@ -239,7 +239,6 @@
"include/grpc/support/useful.h"
],
"headers": [
- "src/core/support/cpu.h",
"src/core/support/env.h",
"src/core/support/file.h",
"src/core/support/murmur_hash.h",
@@ -411,12 +410,15 @@
"include/grpc++/impl/internal_stub.h",
"include/grpc++/impl/rpc_method.h",
"include/grpc++/impl/rpc_service_method.h",
+ "include/grpc++/impl/service_type.h",
"include/grpc++/server.h",
"include/grpc++/server_builder.h",
"include/grpc++/server_context.h",
"include/grpc++/server_credentials.h",
"include/grpc++/status.h",
- "include/grpc++/stream.h"
+ "include/grpc++/status_code_enum.h",
+ "include/grpc++/stream.h",
+ "include/grpc++/thread_pool_interface.h"
],
"headers": [
"src/cpp/client/channel.h",
diff --git a/src/node/package.json b/src/node/package.json
index 7aa0083e69..bbd89be77d 100644
--- a/src/node/package.json
+++ b/src/node/package.json
@@ -19,5 +19,15 @@
"minimist": "^1.1.0",
"googleauth": "google/google-auth-library-nodejs"
},
+ "files": [
+ "README.md",
+ "index.js",
+ "binding.gyp",
+ "examples",
+ "ext",
+ "interop",
+ "src",
+ "test"
+ ],
"main": "index.js"
}