mirror of
https://github.com/grpc/grpc-node.git
synced 2026-02-01 14:54:35 +00:00
Builds.
This commit is contained in:
parent
16382ee7ca
commit
3b686ebe16
File diff suppressed because it is too large
Load Diff
@ -73,8 +73,8 @@
|
|||||||
'-std=c++11'
|
'-std=c++11'
|
||||||
],
|
],
|
||||||
'include_dirs': [
|
'include_dirs': [
|
||||||
'.',
|
'deps/grpc',
|
||||||
'include'
|
'deps/grpc/include'
|
||||||
],
|
],
|
||||||
'defines': [
|
'defines': [
|
||||||
'GPR_BACKWARDS_COMPATIBILITY_MODE',
|
'GPR_BACKWARDS_COMPATIBILITY_MODE',
|
||||||
@ -106,7 +106,7 @@
|
|||||||
# This is the condition for using boringssl
|
# This is the condition for using boringssl
|
||||||
['OS=="win" or runtime=="electron"', {
|
['OS=="win" or runtime=="electron"', {
|
||||||
"include_dirs": [
|
"include_dirs": [
|
||||||
"third_party/boringssl/include"
|
"deps/grpc/third_party/boringssl/include"
|
||||||
],
|
],
|
||||||
"defines": [
|
"defines": [
|
||||||
'OPENSSL_NO_ASM'
|
'OPENSSL_NO_ASM'
|
||||||
@ -138,8 +138,8 @@
|
|||||||
}],
|
}],
|
||||||
['OS == "win"', {
|
['OS == "win"', {
|
||||||
"include_dirs": [
|
"include_dirs": [
|
||||||
"third_party/zlib",
|
"deps/grpc/third_party/zlib",
|
||||||
"third_party/cares/cares"
|
"deps/grpc/third_party/cares/cares"
|
||||||
],
|
],
|
||||||
"defines": [
|
"defines": [
|
||||||
'_WIN32_WINNT=0x0600',
|
'_WIN32_WINNT=0x0600',
|
||||||
@ -201,7 +201,7 @@
|
|||||||
],
|
],
|
||||||
'sources': [
|
'sources': [
|
||||||
% for source in lib.src:
|
% for source in lib.src:
|
||||||
'${source}',
|
'deps/grpc/${source}',
|
||||||
% endfor
|
% endfor
|
||||||
],
|
],
|
||||||
'conditions': [
|
'conditions': [
|
||||||
@ -264,7 +264,7 @@
|
|||||||
],
|
],
|
||||||
'sources': [
|
'sources': [
|
||||||
% for source in lib.src:
|
% for source in lib.src:
|
||||||
'${source}',
|
'deps/grpc/${source}',
|
||||||
% endfor
|
% endfor
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -289,7 +289,7 @@
|
|||||||
],
|
],
|
||||||
'sources': [
|
'sources': [
|
||||||
% for source in lib.src:
|
% for source in lib.src:
|
||||||
'${source}',
|
'deps/grpc/${source}',
|
||||||
% endfor
|
% endfor
|
||||||
],
|
],
|
||||||
'conditions': [
|
'conditions': [
|
||||||
@ -344,7 +344,8 @@
|
|||||||
"target_name": "${module.name}",
|
"target_name": "${module.name}",
|
||||||
"sources": [
|
"sources": [
|
||||||
% for source in module.src:
|
% for source in module.src:
|
||||||
"${source}",
|
## temporary hack until we get the build.yaml out of grpc.
|
||||||
|
"${source[len('src/node/'):]}",
|
||||||
% endfor
|
% endfor
|
||||||
],
|
],
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user