aboutsummaryrefslogtreecommitdiffhomepage
path: root/binding.gyp
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2017-04-28 14:45:55 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2017-04-28 14:45:55 -0700
commita64f38d308f15f5bbf9f2a258eb9bbc26a14dfa1 (patch)
tree53f77aa8dcd655198b0aa7468e57eadb0348aa23 /binding.gyp
parent81aae44858dc72a55461486d9ea192db25f4b890 (diff)
parent3049462b75ac557348243601896ed68ca8145522 (diff)
Merge commit '3049460b75ac557348243601896ed68ca8145522' into master-upmerge-v1.3.x
Diffstat (limited to 'binding.gyp')
-rw-r--r--binding.gyp20
1 files changed, 4 insertions, 16 deletions
diff --git a/binding.gyp b/binding.gyp
index 1032dafe01..45e85e7988 100644
--- a/binding.gyp
+++ b/binding.gyp
@@ -39,9 +39,6 @@
{
'variables': {
'runtime%': 'node',
- # UV integration in C core is enabled by default. It can be disabled
- # by setting this argument to anything else.
- 'grpc_uv%': 'true',
# Some Node installations use the system installation of OpenSSL, and on
# some systems, the system OpenSSL still does not have ALPN support. This
# will let users recompile gRPC to work without ALPN.
@@ -90,17 +87,11 @@
'include'
],
'defines': [
- 'GPR_BACKWARDS_COMPATIBILITY_MODE'
+ 'GPR_BACKWARDS_COMPATIBILITY_MODE',
+ 'GRPC_ARES=0',
+ 'GRPC_UV'
],
'conditions': [
- ['grpc_uv=="true"', {
- 'defines': [
- 'GRPC_ARES=0',
- # Disabling this while bugs are ironed out. Uncomment this to
- # re-enable libuv integration in C core.
- 'GRPC_UV'
- ]
- }],
['grpc_gcov=="true"', {
'cflags': [
'-O0',
@@ -951,13 +942,10 @@
"src/node/ext/call_credentials.cc",
"src/node/ext/channel.cc",
"src/node/ext/channel_credentials.cc",
- "src/node/ext/completion_queue_threadpool.cc",
- "src/node/ext/completion_queue_uv.cc",
+ "src/node/ext/completion_queue.cc",
"src/node/ext/node_grpc.cc",
"src/node/ext/server.cc",
"src/node/ext/server_credentials.cc",
- "src/node/ext/server_generic.cc",
- "src/node/ext/server_uv.cc",
"src/node/ext/slice.cc",
"src/node/ext/timeval.cc",
],