blob: 91919c3330542014b85a672511649e764b0db468 [file] [log] [blame]
murgatroid99fd994f12015-10-09 14:02:28 -07001# GRPC Node gyp file
2# This currently builds the Node extension and dependencies
3# This file has been automatically generated from a template file.
4# Please look at the templates directory instead.
5# This file can be regenerated from the template by running
6# tools/buildgen/generate_projects.sh
7
Jan Tattermusch4d5c3102017-06-07 10:23:56 +02008# Copyright 2015 gRPC authors.
murgatroid99f33b1322015-10-05 09:45:04 -07009#
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020010# Licensed under the Apache License, Version 2.0 (the "License");
11# you may not use this file except in compliance with the License.
12# You may obtain a copy of the License at
murgatroid99f33b1322015-10-05 09:45:04 -070013#
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020014# http://www.apache.org/licenses/LICENSE-2.0
murgatroid99f33b1322015-10-05 09:45:04 -070015#
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020016# Unless required by applicable law or agreed to in writing, software
17# distributed under the License is distributed on an "AS IS" BASIS,
18# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19# See the License for the specific language governing permissions and
20# limitations under the License.
murgatroid99fd994f12015-10-09 14:02:28 -070021
22# Some of this file is built with the help of
23# https://n8.io/converting-a-c-library-to-gyp/
murgatroid992af89e42015-10-01 11:54:00 -070024{
murgatroid99dc230462016-10-25 14:12:42 -070025 'variables': {
murgatroid991191b722017-02-08 11:56:52 -080026 'runtime%': 'node',
murgatroid99a99c9472017-03-02 11:32:08 -080027 # Some Node installations use the system installation of OpenSSL, and on
28 # some systems, the system OpenSSL still does not have ALPN support. This
29 # will let users recompile gRPC to work without ALPN.
murgatroid99fef39132017-03-23 17:45:21 -070030 'grpc_alpn%': 'true',
31 # Indicates that the library should be built with gcov.
murgatroid9998058332017-04-19 10:25:34 -070032 'grpc_gcov%': 'false',
33 # Indicates that the library should be built with compatibility for musl
34 # libc, so that it can run on Alpine Linux. This is only necessary if not
35 # building on Alpine Linux
36 'grpc_alpine%': 'false'
murgatroid99dc230462016-10-25 14:12:42 -070037 },
murgatroid99fd994f12015-10-09 14:02:28 -070038 'target_defaults': {
murgatroid99fef39132017-03-23 17:45:21 -070039 'configurations': {
40 'Release': {
41 'cflags': [
42 '-O2',
43 ],
44 'defines': [
45 'NDEBUG',
46 ],
47 },
48 'Debug': {
49 'cflags': [
50 '-O0',
51 ],
52 'defines': [
53 '_DEBUG',
54 'DEBUG',
55 ],
56 },
57 },
58 'cflags': [
59 '-g',
60 '-Wall',
61 '-Wextra',
62 '-Werror',
63 '-Wno-long-long',
64 '-Wno-unused-parameter',
65 '-DOSATOMIC_USE_INLINED=1',
66 ],
67 'ldflags': [
68 '-g',
69 ],
murgatroid9932de20c2017-07-06 16:58:11 -070070 'cflags_c': [
71 '-Werror',
72 '-std=c99'
73 ],
74 'cflags_cc': [
75 '-Werror',
76 '-std=c++11'
77 ],
murgatroid99fd994f12015-10-09 14:02:28 -070078 'include_dirs': [
79 '.',
murgatroid995c56c922016-01-25 13:32:52 -080080 'include'
murgatroid99a89d9e72015-10-13 16:03:16 -070081 ],
murgatroid999030c812016-09-16 13:25:08 -070082 'defines': [
murgatroid99f94f64f2017-04-24 13:35:21 -070083 'GPR_BACKWARDS_COMPATIBILITY_MODE',
84 'GRPC_ARES=0',
85 'GRPC_UV'
murgatroid999030c812016-09-16 13:25:08 -070086 ],
murgatroid99a89d9e72015-10-13 16:03:16 -070087 'conditions': [
murgatroid99fef39132017-03-23 17:45:21 -070088 ['grpc_gcov=="true"', {
89 'cflags': [
90 '-O0',
91 '-fprofile-arcs',
92 '-ftest-coverage',
93 '-Wno-return-type',
94 ],
95 'defines': [
96 '_DEBUG',
97 'DEBUG',
98 'GPR_GCOV',
99 ],
100 'ldflags': [
101 '-fprofile-arcs',
102 '-ftest-coverage',
103 '-rdynamic',
Matt Kwong0c867be2017-09-21 16:25:48 -0700104 '-lstdc++',
murgatroid99fef39132017-03-23 17:45:21 -0700105 ],
106 }],
murgatroid9998058332017-04-19 10:25:34 -0700107 ['grpc_alpine=="true"', {
108 'defines': [
109 'GPR_MUSL_LIBC_COMPAT'
110 ]
111 }],
murgatroid99e8ec16d2017-01-13 11:00:53 -0800112 ['OS!="win" and runtime=="electron"', {
Michael Lumish88162f82017-01-12 17:37:58 -0800113 "defines": [
114 'OPENSSL_NO_THREADS'
115 ]
116 }],
murgatroid99dc230462016-10-25 14:12:42 -0700117 # This is the condition for using boringssl
118 ['OS=="win" or runtime=="electron"', {
119 "include_dirs": [
120 "third_party/boringssl/include"
121 ],
122 "defines": [
Michael Lumish88162f82017-01-12 17:37:58 -0800123 'OPENSSL_NO_ASM'
murgatroid99dc230462016-10-25 14:12:42 -0700124 ]
125 }, {
murgatroid99a99c9472017-03-02 11:32:08 -0800126 'conditions': [
Yaron Shani8d1cfdc2017-05-22 14:43:05 +0300127 ["target_arch=='ia32'", {
Yaron Shani1d9a11b2017-05-22 23:00:46 -0700128 "include_dirs": [ "<(node_root_dir)/deps/openssl/config/piii" ]
Yaron Shani8d1cfdc2017-05-22 14:43:05 +0300129 }],
130 ["target_arch=='x64'", {
Yaron Shani1d9a11b2017-05-22 23:00:46 -0700131 "include_dirs": [ "<(node_root_dir)/deps/openssl/config/k8" ]
Yaron Shani8d1cfdc2017-05-22 14:43:05 +0300132 }],
133 ["target_arch=='arm'", {
Yaron Shani1d9a11b2017-05-22 23:00:46 -0700134 "include_dirs": [ "<(node_root_dir)/deps/openssl/config/arm" ]
Yaron Shani8d1cfdc2017-05-22 14:43:05 +0300135 }],
murgatroid99a99c9472017-03-02 11:32:08 -0800136 ['grpc_alpn=="true"', {
137 'defines': [
138 'TSI_OPENSSL_ALPN_SUPPORT=1'
139 ],
140 }, {
141 'defines': [
142 'TSI_OPENSSL_ALPN_SUPPORT=0'
143 ],
144 }]
murgatroid99dc230462016-10-25 14:12:42 -0700145 ],
146 'include_dirs': [
147 '<(node_root_dir)/deps/openssl/openssl/include',
murgatroid99dc230462016-10-25 14:12:42 -0700148 ]
149 }],
murgatroid995c56c922016-01-25 13:32:52 -0800150 ['OS == "win"', {
murgatroid99673f65b2016-02-01 11:19:07 -0800151 "include_dirs": [
Yuchen Zengb48000c2016-08-09 22:44:23 -0700152 "third_party/zlib",
Yuchen Zeng6694bb02017-01-23 17:09:51 -0800153 "third_party/cares/cares"
murgatroid99673f65b2016-02-01 11:19:07 -0800154 ],
Michael Lumishe2f34652016-01-27 16:41:54 -0800155 "defines": [
156 '_WIN32_WINNT=0x0600',
157 'WIN32_LEAN_AND_MEAN',
158 '_HAS_EXCEPTIONS=0',
159 'UNICODE',
160 '_UNICODE',
161 'NOMINMAX',
Michael Lumishe2f34652016-01-27 16:41:54 -0800162 ],
163 "msvs_settings": {
164 'VCCLCompilerTool': {
165 'RuntimeLibrary': 1, # static debug
166 }
167 },
168 "libraries": [
169 "ws2_32"
170 ]
171 }, { # OS != "win"
murgatroid995c56c922016-01-25 13:32:52 -0800172 'include_dirs': [
Yuchen Zengb48000c2016-08-09 22:44:23 -0700173 '<(node_root_dir)/deps/zlib',
Michael Lumish68dff872017-04-03 11:16:41 -0700174 '<(node_root_dir)/deps/cares/include'
murgatroid99a89d9e72015-10-13 16:03:16 -0700175 ]
murgatroid9932de20c2017-07-06 16:58:11 -0700176 }],
177 ['OS == "mac"', {
178 'xcode_settings': {
murgatroid99e9295472017-07-19 15:58:40 -0700179 'OTHER_CFLAGS': [
180 '-g',
181 '-Wall',
182 '-Wextra',
183 '-Werror',
184 '-Wno-long-long',
185 '-Wno-unused-parameter',
186 '-DOSATOMIC_USE_INLINED=1',
187 ],
188 'OTHER_CPLUSPLUSFLAGS': [
189 '-g',
190 '-Wall',
191 '-Wextra',
192 '-Werror',
193 '-Wno-long-long',
194 '-Wno-unused-parameter',
195 '-DOSATOMIC_USE_INLINED=1',
196 '-stdlib=libc++',
murgatroid99655c8b12017-07-20 10:23:43 -0700197 '-std=c++11',
198 '-Wno-error=deprecated-declarations'
murgatroid99e9295472017-07-19 15:58:40 -0700199 ],
murgatroid9932de20c2017-07-06 16:58:11 -0700200 },
murgatroid99afe46982015-10-23 10:17:26 -0700201 }]
murgatroid99fd994f12015-10-09 14:02:28 -0700202 ]
203 },
murgatroid995c56c922016-01-25 13:32:52 -0800204 'conditions': [
murgatroid99dc230462016-10-25 14:12:42 -0700205 ['OS=="win" or runtime=="electron"', {
murgatroid995c56c922016-01-25 13:32:52 -0800206 'targets': [
murgatroid99af6c1782016-01-28 13:14:24 -0800207 {
murgatroid995c56c922016-01-25 13:32:52 -0800208 'target_name': 'boringssl',
209 'product_prefix': 'lib',
210 'type': 'static_library',
211 'dependencies': [
212 ],
213 'sources': [
214 'src/boringssl/err_data.c',
215 'third_party/boringssl/crypto/aes/aes.c',
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700216 'third_party/boringssl/crypto/aes/key_wrap.c',
murgatroid995c56c922016-01-25 13:32:52 -0800217 'third_party/boringssl/crypto/aes/mode_wrappers.c',
218 'third_party/boringssl/crypto/asn1/a_bitstr.c',
219 'third_party/boringssl/crypto/asn1/a_bool.c',
murgatroid995c56c922016-01-25 13:32:52 -0800220 'third_party/boringssl/crypto/asn1/a_d2i_fp.c',
221 'third_party/boringssl/crypto/asn1/a_dup.c',
222 'third_party/boringssl/crypto/asn1/a_enum.c',
223 'third_party/boringssl/crypto/asn1/a_gentm.c',
224 'third_party/boringssl/crypto/asn1/a_i2d_fp.c',
225 'third_party/boringssl/crypto/asn1/a_int.c',
226 'third_party/boringssl/crypto/asn1/a_mbstr.c',
227 'third_party/boringssl/crypto/asn1/a_object.c',
228 'third_party/boringssl/crypto/asn1/a_octet.c',
229 'third_party/boringssl/crypto/asn1/a_print.c',
230 'third_party/boringssl/crypto/asn1/a_strnid.c',
231 'third_party/boringssl/crypto/asn1/a_time.c',
232 'third_party/boringssl/crypto/asn1/a_type.c',
233 'third_party/boringssl/crypto/asn1/a_utctm.c',
234 'third_party/boringssl/crypto/asn1/a_utf8.c',
235 'third_party/boringssl/crypto/asn1/asn1_lib.c',
236 'third_party/boringssl/crypto/asn1/asn1_par.c',
237 'third_party/boringssl/crypto/asn1/asn_pack.c',
murgatroid995c56c922016-01-25 13:32:52 -0800238 'third_party/boringssl/crypto/asn1/f_enum.c',
239 'third_party/boringssl/crypto/asn1/f_int.c',
240 'third_party/boringssl/crypto/asn1/f_string.c',
241 'third_party/boringssl/crypto/asn1/t_bitst.c',
murgatroid995c56c922016-01-25 13:32:52 -0800242 'third_party/boringssl/crypto/asn1/tasn_dec.c',
243 'third_party/boringssl/crypto/asn1/tasn_enc.c',
244 'third_party/boringssl/crypto/asn1/tasn_fre.c',
245 'third_party/boringssl/crypto/asn1/tasn_new.c',
murgatroid995c56c922016-01-25 13:32:52 -0800246 'third_party/boringssl/crypto/asn1/tasn_typ.c',
247 'third_party/boringssl/crypto/asn1/tasn_utl.c',
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700248 'third_party/boringssl/crypto/asn1/time_support.c',
murgatroid995c56c922016-01-25 13:32:52 -0800249 'third_party/boringssl/crypto/asn1/x_bignum.c',
250 'third_party/boringssl/crypto/asn1/x_long.c',
251 'third_party/boringssl/crypto/base64/base64.c',
252 'third_party/boringssl/crypto/bio/bio.c',
253 'third_party/boringssl/crypto/bio/bio_mem.c',
murgatroid995c56c922016-01-25 13:32:52 -0800254 'third_party/boringssl/crypto/bio/connect.c',
255 'third_party/boringssl/crypto/bio/fd.c',
256 'third_party/boringssl/crypto/bio/file.c',
257 'third_party/boringssl/crypto/bio/hexdump.c',
258 'third_party/boringssl/crypto/bio/pair.c',
259 'third_party/boringssl/crypto/bio/printf.c',
260 'third_party/boringssl/crypto/bio/socket.c',
261 'third_party/boringssl/crypto/bio/socket_helper.c',
262 'third_party/boringssl/crypto/bn/add.c',
263 'third_party/boringssl/crypto/bn/asm/x86_64-gcc.c',
264 'third_party/boringssl/crypto/bn/bn.c',
265 'third_party/boringssl/crypto/bn/bn_asn1.c',
266 'third_party/boringssl/crypto/bn/cmp.c',
267 'third_party/boringssl/crypto/bn/convert.c',
268 'third_party/boringssl/crypto/bn/ctx.c',
269 'third_party/boringssl/crypto/bn/div.c',
270 'third_party/boringssl/crypto/bn/exponentiation.c',
271 'third_party/boringssl/crypto/bn/gcd.c',
272 'third_party/boringssl/crypto/bn/generic.c',
273 'third_party/boringssl/crypto/bn/kronecker.c',
274 'third_party/boringssl/crypto/bn/montgomery.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800275 'third_party/boringssl/crypto/bn/montgomery_inv.c',
murgatroid995c56c922016-01-25 13:32:52 -0800276 'third_party/boringssl/crypto/bn/mul.c',
277 'third_party/boringssl/crypto/bn/prime.c',
278 'third_party/boringssl/crypto/bn/random.c',
279 'third_party/boringssl/crypto/bn/rsaz_exp.c',
280 'third_party/boringssl/crypto/bn/shift.c',
281 'third_party/boringssl/crypto/bn/sqrt.c',
282 'third_party/boringssl/crypto/buf/buf.c',
itessier2a522032016-04-19 17:38:51 -0700283 'third_party/boringssl/crypto/bytestring/asn1_compat.c',
murgatroid995c56c922016-01-25 13:32:52 -0800284 'third_party/boringssl/crypto/bytestring/ber.c',
285 'third_party/boringssl/crypto/bytestring/cbb.c',
286 'third_party/boringssl/crypto/bytestring/cbs.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800287 'third_party/boringssl/crypto/chacha/chacha.c',
murgatroid995c56c922016-01-25 13:32:52 -0800288 'third_party/boringssl/crypto/cipher/aead.c',
289 'third_party/boringssl/crypto/cipher/cipher.c',
290 'third_party/boringssl/crypto/cipher/derive_key.c',
291 'third_party/boringssl/crypto/cipher/e_aes.c',
292 'third_party/boringssl/crypto/cipher/e_chacha20poly1305.c',
293 'third_party/boringssl/crypto/cipher/e_des.c',
294 'third_party/boringssl/crypto/cipher/e_null.c',
295 'third_party/boringssl/crypto/cipher/e_rc2.c',
296 'third_party/boringssl/crypto/cipher/e_rc4.c',
297 'third_party/boringssl/crypto/cipher/e_ssl3.c',
298 'third_party/boringssl/crypto/cipher/e_tls.c',
299 'third_party/boringssl/crypto/cipher/tls_cbc.c',
300 'third_party/boringssl/crypto/cmac/cmac.c',
301 'third_party/boringssl/crypto/conf/conf.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800302 'third_party/boringssl/crypto/cpu-aarch64-linux.c',
303 'third_party/boringssl/crypto/cpu-arm-linux.c',
murgatroid995c56c922016-01-25 13:32:52 -0800304 'third_party/boringssl/crypto/cpu-arm.c',
305 'third_party/boringssl/crypto/cpu-intel.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800306 'third_party/boringssl/crypto/cpu-ppc64le.c',
murgatroid995c56c922016-01-25 13:32:52 -0800307 'third_party/boringssl/crypto/crypto.c',
308 'third_party/boringssl/crypto/curve25519/curve25519.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800309 'third_party/boringssl/crypto/curve25519/spake25519.c',
itessier2a522032016-04-19 17:38:51 -0700310 'third_party/boringssl/crypto/curve25519/x25519-x86_64.c',
murgatroid995c56c922016-01-25 13:32:52 -0800311 'third_party/boringssl/crypto/des/des.c',
312 'third_party/boringssl/crypto/dh/check.c',
313 'third_party/boringssl/crypto/dh/dh.c',
314 'third_party/boringssl/crypto/dh/dh_asn1.c',
315 'third_party/boringssl/crypto/dh/params.c',
316 'third_party/boringssl/crypto/digest/digest.c',
317 'third_party/boringssl/crypto/digest/digests.c',
murgatroid995c56c922016-01-25 13:32:52 -0800318 'third_party/boringssl/crypto/dsa/dsa.c',
319 'third_party/boringssl/crypto/dsa/dsa_asn1.c',
320 'third_party/boringssl/crypto/ec/ec.c',
321 'third_party/boringssl/crypto/ec/ec_asn1.c',
322 'third_party/boringssl/crypto/ec/ec_key.c',
323 'third_party/boringssl/crypto/ec/ec_montgomery.c',
324 'third_party/boringssl/crypto/ec/oct.c',
325 'third_party/boringssl/crypto/ec/p224-64.c',
326 'third_party/boringssl/crypto/ec/p256-64.c',
327 'third_party/boringssl/crypto/ec/p256-x86_64.c',
328 'third_party/boringssl/crypto/ec/simple.c',
329 'third_party/boringssl/crypto/ec/util-64.c',
330 'third_party/boringssl/crypto/ec/wnaf.c',
331 'third_party/boringssl/crypto/ecdh/ecdh.c',
332 'third_party/boringssl/crypto/ecdsa/ecdsa.c',
333 'third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c',
334 'third_party/boringssl/crypto/engine/engine.c',
335 'third_party/boringssl/crypto/err/err.c',
murgatroid995c56c922016-01-25 13:32:52 -0800336 'third_party/boringssl/crypto/evp/digestsign.c',
337 'third_party/boringssl/crypto/evp/evp.c',
338 'third_party/boringssl/crypto/evp/evp_asn1.c',
339 'third_party/boringssl/crypto/evp/evp_ctx.c',
340 'third_party/boringssl/crypto/evp/p_dsa_asn1.c',
341 'third_party/boringssl/crypto/evp/p_ec.c',
342 'third_party/boringssl/crypto/evp/p_ec_asn1.c',
343 'third_party/boringssl/crypto/evp/p_rsa.c',
344 'third_party/boringssl/crypto/evp/p_rsa_asn1.c',
345 'third_party/boringssl/crypto/evp/pbkdf.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800346 'third_party/boringssl/crypto/evp/print.c',
murgatroid995c56c922016-01-25 13:32:52 -0800347 'third_party/boringssl/crypto/evp/sign.c',
348 'third_party/boringssl/crypto/ex_data.c',
349 'third_party/boringssl/crypto/hkdf/hkdf.c',
350 'third_party/boringssl/crypto/hmac/hmac.c',
351 'third_party/boringssl/crypto/lhash/lhash.c',
352 'third_party/boringssl/crypto/md4/md4.c',
353 'third_party/boringssl/crypto/md5/md5.c',
354 'third_party/boringssl/crypto/mem.c',
355 'third_party/boringssl/crypto/modes/cbc.c',
356 'third_party/boringssl/crypto/modes/cfb.c',
357 'third_party/boringssl/crypto/modes/ctr.c',
358 'third_party/boringssl/crypto/modes/gcm.c',
359 'third_party/boringssl/crypto/modes/ofb.c',
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700360 'third_party/boringssl/crypto/modes/polyval.c',
murgatroid995c56c922016-01-25 13:32:52 -0800361 'third_party/boringssl/crypto/obj/obj.c',
362 'third_party/boringssl/crypto/obj/obj_xref.c',
363 'third_party/boringssl/crypto/pem/pem_all.c',
364 'third_party/boringssl/crypto/pem/pem_info.c',
365 'third_party/boringssl/crypto/pem/pem_lib.c',
366 'third_party/boringssl/crypto/pem/pem_oth.c',
367 'third_party/boringssl/crypto/pem/pem_pk8.c',
368 'third_party/boringssl/crypto/pem/pem_pkey.c',
369 'third_party/boringssl/crypto/pem/pem_x509.c',
370 'third_party/boringssl/crypto/pem/pem_xaux.c',
murgatroid995c56c922016-01-25 13:32:52 -0800371 'third_party/boringssl/crypto/pkcs8/p5_pbev2.c',
372 'third_party/boringssl/crypto/pkcs8/p8_pkey.c',
373 'third_party/boringssl/crypto/pkcs8/pkcs8.c',
374 'third_party/boringssl/crypto/poly1305/poly1305.c',
375 'third_party/boringssl/crypto/poly1305/poly1305_arm.c',
376 'third_party/boringssl/crypto/poly1305/poly1305_vec.c',
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700377 'third_party/boringssl/crypto/pool/pool.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800378 'third_party/boringssl/crypto/rand/deterministic.c',
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700379 'third_party/boringssl/crypto/rand/fuchsia.c',
murgatroid995c56c922016-01-25 13:32:52 -0800380 'third_party/boringssl/crypto/rand/rand.c',
381 'third_party/boringssl/crypto/rand/urandom.c',
382 'third_party/boringssl/crypto/rand/windows.c',
383 'third_party/boringssl/crypto/rc4/rc4.c',
384 'third_party/boringssl/crypto/refcount_c11.c',
385 'third_party/boringssl/crypto/refcount_lock.c',
386 'third_party/boringssl/crypto/rsa/blinding.c',
387 'third_party/boringssl/crypto/rsa/padding.c',
388 'third_party/boringssl/crypto/rsa/rsa.c',
389 'third_party/boringssl/crypto/rsa/rsa_asn1.c',
390 'third_party/boringssl/crypto/rsa/rsa_impl.c',
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700391 'third_party/boringssl/crypto/sha/sha1-altivec.c',
murgatroid995c56c922016-01-25 13:32:52 -0800392 'third_party/boringssl/crypto/sha/sha1.c',
393 'third_party/boringssl/crypto/sha/sha256.c',
394 'third_party/boringssl/crypto/sha/sha512.c',
395 'third_party/boringssl/crypto/stack/stack.c',
396 'third_party/boringssl/crypto/thread.c',
397 'third_party/boringssl/crypto/thread_none.c',
398 'third_party/boringssl/crypto/thread_pthread.c',
399 'third_party/boringssl/crypto/thread_win.c',
murgatroid995c56c922016-01-25 13:32:52 -0800400 'third_party/boringssl/crypto/x509/a_digest.c',
401 'third_party/boringssl/crypto/x509/a_sign.c',
402 'third_party/boringssl/crypto/x509/a_strex.c',
403 'third_party/boringssl/crypto/x509/a_verify.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800404 'third_party/boringssl/crypto/x509/algorithm.c',
murgatroid995c56c922016-01-25 13:32:52 -0800405 'third_party/boringssl/crypto/x509/asn1_gen.c',
406 'third_party/boringssl/crypto/x509/by_dir.c',
407 'third_party/boringssl/crypto/x509/by_file.c',
408 'third_party/boringssl/crypto/x509/i2d_pr.c',
409 'third_party/boringssl/crypto/x509/pkcs7.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800410 'third_party/boringssl/crypto/x509/rsa_pss.c',
murgatroid995c56c922016-01-25 13:32:52 -0800411 'third_party/boringssl/crypto/x509/t_crl.c',
412 'third_party/boringssl/crypto/x509/t_req.c',
413 'third_party/boringssl/crypto/x509/t_x509.c',
414 'third_party/boringssl/crypto/x509/t_x509a.c',
415 'third_party/boringssl/crypto/x509/x509.c',
416 'third_party/boringssl/crypto/x509/x509_att.c',
417 'third_party/boringssl/crypto/x509/x509_cmp.c',
418 'third_party/boringssl/crypto/x509/x509_d2.c',
419 'third_party/boringssl/crypto/x509/x509_def.c',
420 'third_party/boringssl/crypto/x509/x509_ext.c',
421 'third_party/boringssl/crypto/x509/x509_lu.c',
422 'third_party/boringssl/crypto/x509/x509_obj.c',
423 'third_party/boringssl/crypto/x509/x509_r2x.c',
424 'third_party/boringssl/crypto/x509/x509_req.c',
425 'third_party/boringssl/crypto/x509/x509_set.c',
426 'third_party/boringssl/crypto/x509/x509_trs.c',
427 'third_party/boringssl/crypto/x509/x509_txt.c',
428 'third_party/boringssl/crypto/x509/x509_v3.c',
429 'third_party/boringssl/crypto/x509/x509_vfy.c',
430 'third_party/boringssl/crypto/x509/x509_vpm.c',
431 'third_party/boringssl/crypto/x509/x509cset.c',
432 'third_party/boringssl/crypto/x509/x509name.c',
433 'third_party/boringssl/crypto/x509/x509rset.c',
434 'third_party/boringssl/crypto/x509/x509spki.c',
435 'third_party/boringssl/crypto/x509/x509type.c',
436 'third_party/boringssl/crypto/x509/x_algor.c',
437 'third_party/boringssl/crypto/x509/x_all.c',
438 'third_party/boringssl/crypto/x509/x_attrib.c',
439 'third_party/boringssl/crypto/x509/x_crl.c',
440 'third_party/boringssl/crypto/x509/x_exten.c',
441 'third_party/boringssl/crypto/x509/x_info.c',
442 'third_party/boringssl/crypto/x509/x_name.c',
443 'third_party/boringssl/crypto/x509/x_pkey.c',
444 'third_party/boringssl/crypto/x509/x_pubkey.c',
445 'third_party/boringssl/crypto/x509/x_req.c',
446 'third_party/boringssl/crypto/x509/x_sig.c',
447 'third_party/boringssl/crypto/x509/x_spki.c',
448 'third_party/boringssl/crypto/x509/x_val.c',
449 'third_party/boringssl/crypto/x509/x_x509.c',
450 'third_party/boringssl/crypto/x509/x_x509a.c',
451 'third_party/boringssl/crypto/x509v3/pcy_cache.c',
452 'third_party/boringssl/crypto/x509v3/pcy_data.c',
453 'third_party/boringssl/crypto/x509v3/pcy_lib.c',
454 'third_party/boringssl/crypto/x509v3/pcy_map.c',
455 'third_party/boringssl/crypto/x509v3/pcy_node.c',
456 'third_party/boringssl/crypto/x509v3/pcy_tree.c',
457 'third_party/boringssl/crypto/x509v3/v3_akey.c',
458 'third_party/boringssl/crypto/x509v3/v3_akeya.c',
459 'third_party/boringssl/crypto/x509v3/v3_alt.c',
460 'third_party/boringssl/crypto/x509v3/v3_bcons.c',
461 'third_party/boringssl/crypto/x509v3/v3_bitst.c',
462 'third_party/boringssl/crypto/x509v3/v3_conf.c',
463 'third_party/boringssl/crypto/x509v3/v3_cpols.c',
464 'third_party/boringssl/crypto/x509v3/v3_crld.c',
465 'third_party/boringssl/crypto/x509v3/v3_enum.c',
466 'third_party/boringssl/crypto/x509v3/v3_extku.c',
467 'third_party/boringssl/crypto/x509v3/v3_genn.c',
468 'third_party/boringssl/crypto/x509v3/v3_ia5.c',
469 'third_party/boringssl/crypto/x509v3/v3_info.c',
470 'third_party/boringssl/crypto/x509v3/v3_int.c',
471 'third_party/boringssl/crypto/x509v3/v3_lib.c',
472 'third_party/boringssl/crypto/x509v3/v3_ncons.c',
473 'third_party/boringssl/crypto/x509v3/v3_pci.c',
474 'third_party/boringssl/crypto/x509v3/v3_pcia.c',
475 'third_party/boringssl/crypto/x509v3/v3_pcons.c',
476 'third_party/boringssl/crypto/x509v3/v3_pku.c',
477 'third_party/boringssl/crypto/x509v3/v3_pmaps.c',
478 'third_party/boringssl/crypto/x509v3/v3_prn.c',
479 'third_party/boringssl/crypto/x509v3/v3_purp.c',
480 'third_party/boringssl/crypto/x509v3/v3_skey.c',
481 'third_party/boringssl/crypto/x509v3/v3_sxnet.c',
482 'third_party/boringssl/crypto/x509v3/v3_utl.c',
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700483 'third_party/boringssl/ssl/bio_ssl.c',
murgatroid995c56c922016-01-25 13:32:52 -0800484 'third_party/boringssl/ssl/custom_extensions.c',
485 'third_party/boringssl/ssl/d1_both.c',
murgatroid995c56c922016-01-25 13:32:52 -0800486 'third_party/boringssl/ssl/d1_lib.c',
murgatroid995c56c922016-01-25 13:32:52 -0800487 'third_party/boringssl/ssl/d1_pkt.c',
488 'third_party/boringssl/ssl/d1_srtp.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800489 'third_party/boringssl/ssl/dtls_method.c',
murgatroid995c56c922016-01-25 13:32:52 -0800490 'third_party/boringssl/ssl/dtls_record.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800491 'third_party/boringssl/ssl/handshake_client.c',
492 'third_party/boringssl/ssl/handshake_server.c',
murgatroid995c56c922016-01-25 13:32:52 -0800493 'third_party/boringssl/ssl/s3_both.c',
murgatroid995c56c922016-01-25 13:32:52 -0800494 'third_party/boringssl/ssl/s3_lib.c',
murgatroid995c56c922016-01-25 13:32:52 -0800495 'third_party/boringssl/ssl/s3_pkt.c',
murgatroid995c56c922016-01-25 13:32:52 -0800496 'third_party/boringssl/ssl/ssl_aead_ctx.c',
497 'third_party/boringssl/ssl/ssl_asn1.c',
498 'third_party/boringssl/ssl/ssl_buffer.c',
499 'third_party/boringssl/ssl/ssl_cert.c',
500 'third_party/boringssl/ssl/ssl_cipher.c',
itessier2a522032016-04-19 17:38:51 -0700501 'third_party/boringssl/ssl/ssl_ecdh.c',
murgatroid995c56c922016-01-25 13:32:52 -0800502 'third_party/boringssl/ssl/ssl_file.c',
503 'third_party/boringssl/ssl/ssl_lib.c',
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700504 'third_party/boringssl/ssl/ssl_privkey.c',
505 'third_party/boringssl/ssl/ssl_privkey_cc.cc',
murgatroid995c56c922016-01-25 13:32:52 -0800506 'third_party/boringssl/ssl/ssl_session.c',
507 'third_party/boringssl/ssl/ssl_stat.c',
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700508 'third_party/boringssl/ssl/ssl_transcript.c',
509 'third_party/boringssl/ssl/ssl_x509.c',
murgatroid995c56c922016-01-25 13:32:52 -0800510 'third_party/boringssl/ssl/t1_enc.c',
511 'third_party/boringssl/ssl/t1_lib.c',
Stanley Cheungb39942f2017-01-12 21:31:07 -0800512 'third_party/boringssl/ssl/tls13_both.c',
513 'third_party/boringssl/ssl/tls13_client.c',
514 'third_party/boringssl/ssl/tls13_enc.c',
515 'third_party/boringssl/ssl/tls13_server.c',
516 'third_party/boringssl/ssl/tls_method.c',
murgatroid995c56c922016-01-25 13:32:52 -0800517 'third_party/boringssl/ssl/tls_record.c',
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700518 ],
murgatroid99e9295472017-07-19 15:58:40 -0700519 'conditions': [
520 ['OS == "mac"', {
521 'xcode_settings': {
522 'MACOSX_DEPLOYMENT_TARGET': '10.9'
523 }
524 }]
525 ]
murgatroid995c56c922016-01-25 13:32:52 -0800526 },
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700527 ],
murgatroid99dc230462016-10-25 14:12:42 -0700528 }],
murgatroid99f25f5052017-04-13 17:22:32 -0700529 ['OS == "win" and runtime!="electron"', {
murgatroid99dc230462016-10-25 14:12:42 -0700530 'targets': [
531 {
532 # IMPORTANT WINDOWS BUILD INFORMATION
533 # This library does not build on Windows without modifying the Node
534 # development packages that node-gyp downloads in order to build.
535 # Due to https://github.com/nodejs/node/issues/4932, the headers for
536 # BoringSSL conflict with the OpenSSL headers included by default
537 # when including the Node headers. The remedy for this is to remove
538 # the OpenSSL headers, from the downloaded Node development package,
539 # which is typically located in `.node-gyp` in your home directory.
murgatroid99f25f5052017-04-13 17:22:32 -0700540 #
541 # This is not true of Electron, which does not have OpenSSL headers.
murgatroid99dc230462016-10-25 14:12:42 -0700542 'target_name': 'WINDOWS_BUILD_WARNING',
murgatroid99025f1102017-04-10 13:07:37 -0700543 'rules': [
murgatroid99dc230462016-10-25 14:12:42 -0700544 {
murgatroid99025f1102017-04-10 13:07:37 -0700545 'rule_name': 'WINDOWS_BUILD_WARNING',
546 'extension': 'S',
murgatroid99dc230462016-10-25 14:12:42 -0700547 'inputs': [
548 'package.json'
549 ],
550 'outputs': [
551 'ignore_this_part'
552 ],
553 'action': ['echo', 'IMPORTANT: Due to https://github.com/nodejs/node/issues/4932, to build this library on Windows, you must first remove <(node_root_dir)/include/node/openssl/']
554 }
555 ]
556 },
murgatroid99652210a2017-04-19 13:46:32 -0700557 ]
558 }],
559 ['OS == "win"', {
560 'targets': [
murgatroid99dc230462016-10-25 14:12:42 -0700561 # Only want to compile zlib under Windows
murgatroid995c56c922016-01-25 13:32:52 -0800562 {
murgatroid995c56c922016-01-25 13:32:52 -0800563 'target_name': 'z',
564 'product_prefix': 'lib',
565 'type': 'static_library',
566 'dependencies': [
567 ],
568 'sources': [
569 'third_party/zlib/adler32.c',
570 'third_party/zlib/compress.c',
571 'third_party/zlib/crc32.c',
572 'third_party/zlib/deflate.c',
573 'third_party/zlib/gzclose.c',
574 'third_party/zlib/gzlib.c',
575 'third_party/zlib/gzread.c',
576 'third_party/zlib/gzwrite.c',
577 'third_party/zlib/infback.c',
578 'third_party/zlib/inffast.c',
579 'third_party/zlib/inflate.c',
580 'third_party/zlib/inftrees.c',
581 'third_party/zlib/trees.c',
582 'third_party/zlib/uncompr.c',
583 'third_party/zlib/zutil.c',
murgatroid99af6c1782016-01-28 13:14:24 -0800584 ]
murgatroid995c56c922016-01-25 13:32:52 -0800585 },
586 ]
587 }]
588 ],
murgatroid99fd994f12015-10-09 14:02:28 -0700589 'targets': [
590 {
Craig Tillerda179ce2016-02-09 12:01:53 -0800591 'target_name': 'gpr',
592 'product_prefix': 'lib',
593 'type': 'static_library',
594 'dependencies': [
595 ],
596 'sources': [
Yash Tibrewal83062842017-09-21 18:56:08 -0700597 'src/core/lib/profiling/basic_timers.cc',
598 'src/core/lib/profiling/stap_timers.cc',
599 'src/core/lib/support/alloc.cc',
600 'src/core/lib/support/arena.cc',
601 'src/core/lib/support/atm.cc',
602 'src/core/lib/support/avl.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700603 'src/core/lib/support/cmdline.cc',
604 'src/core/lib/support/cpu_iphone.cc',
605 'src/core/lib/support/cpu_linux.cc',
606 'src/core/lib/support/cpu_posix.cc',
607 'src/core/lib/support/cpu_windows.cc',
608 'src/core/lib/support/env_linux.cc',
609 'src/core/lib/support/env_posix.cc',
610 'src/core/lib/support/env_windows.cc',
611 'src/core/lib/support/histogram.cc',
612 'src/core/lib/support/host_port.cc',
613 'src/core/lib/support/log.cc',
614 'src/core/lib/support/log_android.cc',
615 'src/core/lib/support/log_linux.cc',
616 'src/core/lib/support/log_posix.cc',
617 'src/core/lib/support/log_windows.cc',
618 'src/core/lib/support/mpscq.cc',
619 'src/core/lib/support/murmur_hash.cc',
620 'src/core/lib/support/stack_lockfree.cc',
621 'src/core/lib/support/string.cc',
622 'src/core/lib/support/string_posix.cc',
623 'src/core/lib/support/string_util_windows.cc',
624 'src/core/lib/support/string_windows.cc',
625 'src/core/lib/support/subprocess_posix.cc',
626 'src/core/lib/support/subprocess_windows.cc',
627 'src/core/lib/support/sync.cc',
628 'src/core/lib/support/sync_posix.cc',
629 'src/core/lib/support/sync_windows.cc',
630 'src/core/lib/support/thd.cc',
631 'src/core/lib/support/thd_posix.cc',
632 'src/core/lib/support/thd_windows.cc',
633 'src/core/lib/support/time.cc',
634 'src/core/lib/support/time_posix.cc',
635 'src/core/lib/support/time_precise.cc',
636 'src/core/lib/support/time_windows.cc',
637 'src/core/lib/support/tls_pthread.cc',
638 'src/core/lib/support/tmpfile_msys.cc',
639 'src/core/lib/support/tmpfile_posix.cc',
640 'src/core/lib/support/tmpfile_windows.cc',
641 'src/core/lib/support/wrap_memcpy.cc',
Craig Tillerda179ce2016-02-09 12:01:53 -0800642 ],
murgatroid99e9295472017-07-19 15:58:40 -0700643 'conditions': [
644 ['OS == "mac"', {
645 'xcode_settings': {
646 'MACOSX_DEPLOYMENT_TARGET': '10.9'
647 }
648 }]
649 ]
Craig Tillerda179ce2016-02-09 12:01:53 -0800650 },
651 {
murgatroid99fd994f12015-10-09 14:02:28 -0700652 'target_name': 'grpc',
653 'product_prefix': 'lib',
654 'type': 'static_library',
655 'dependencies': [
Craig Tillerda179ce2016-02-09 12:01:53 -0800656 'gpr',
murgatroid99fd994f12015-10-09 14:02:28 -0700657 ],
658 'sources': [
Yash Tibrewal83062842017-09-21 18:56:08 -0700659 'src/core/lib/surface/init.cc',
Craig Tillerd48bd072017-10-06 11:25:14 -0700660 'src/core/lib/backoff/backoff.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700661 'src/core/lib/channel/channel_args.cc',
662 'src/core/lib/channel/channel_stack.cc',
663 'src/core/lib/channel/channel_stack_builder.cc',
664 'src/core/lib/channel/connected_channel.cc',
665 'src/core/lib/channel/handshaker.cc',
666 'src/core/lib/channel/handshaker_factory.cc',
667 'src/core/lib/channel/handshaker_registry.cc',
668 'src/core/lib/compression/compression.cc',
669 'src/core/lib/compression/message_compress.cc',
670 'src/core/lib/compression/stream_compression.cc',
Yash Tibrewalbc460fa2017-10-02 17:42:41 -0700671 'src/core/lib/compression/stream_compression_gzip.cc',
672 'src/core/lib/compression/stream_compression_identity.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700673 'src/core/lib/debug/stats.cc',
674 'src/core/lib/debug/stats_data.cc',
675 'src/core/lib/http/format_request.cc',
676 'src/core/lib/http/httpcli.cc',
677 'src/core/lib/http/parser.cc',
678 'src/core/lib/iomgr/call_combiner.cc',
679 'src/core/lib/iomgr/closure.cc',
680 'src/core/lib/iomgr/combiner.cc',
681 'src/core/lib/iomgr/endpoint.cc',
682 'src/core/lib/iomgr/endpoint_pair_posix.cc',
683 'src/core/lib/iomgr/endpoint_pair_uv.cc',
684 'src/core/lib/iomgr/endpoint_pair_windows.cc',
685 'src/core/lib/iomgr/error.cc',
686 'src/core/lib/iomgr/ev_epoll1_linux.cc',
687 'src/core/lib/iomgr/ev_epollex_linux.cc',
688 'src/core/lib/iomgr/ev_epollsig_linux.cc',
689 'src/core/lib/iomgr/ev_poll_posix.cc',
690 'src/core/lib/iomgr/ev_posix.cc',
691 'src/core/lib/iomgr/ev_windows.cc',
692 'src/core/lib/iomgr/exec_ctx.cc',
693 'src/core/lib/iomgr/executor.cc',
694 'src/core/lib/iomgr/gethostname_fallback.cc',
695 'src/core/lib/iomgr/gethostname_host_name_max.cc',
696 'src/core/lib/iomgr/gethostname_sysconf.cc',
697 'src/core/lib/iomgr/iocp_windows.cc',
698 'src/core/lib/iomgr/iomgr.cc',
699 'src/core/lib/iomgr/iomgr_posix.cc',
700 'src/core/lib/iomgr/iomgr_uv.cc',
701 'src/core/lib/iomgr/iomgr_windows.cc',
702 'src/core/lib/iomgr/is_epollexclusive_available.cc',
703 'src/core/lib/iomgr/load_file.cc',
704 'src/core/lib/iomgr/lockfree_event.cc',
705 'src/core/lib/iomgr/network_status_tracker.cc',
706 'src/core/lib/iomgr/polling_entity.cc',
707 'src/core/lib/iomgr/pollset_set_uv.cc',
708 'src/core/lib/iomgr/pollset_set_windows.cc',
709 'src/core/lib/iomgr/pollset_uv.cc',
710 'src/core/lib/iomgr/pollset_windows.cc',
711 'src/core/lib/iomgr/resolve_address_posix.cc',
712 'src/core/lib/iomgr/resolve_address_uv.cc',
713 'src/core/lib/iomgr/resolve_address_windows.cc',
714 'src/core/lib/iomgr/resource_quota.cc',
715 'src/core/lib/iomgr/sockaddr_utils.cc',
716 'src/core/lib/iomgr/socket_factory_posix.cc',
717 'src/core/lib/iomgr/socket_mutator.cc',
718 'src/core/lib/iomgr/socket_utils_common_posix.cc',
719 'src/core/lib/iomgr/socket_utils_linux.cc',
720 'src/core/lib/iomgr/socket_utils_posix.cc',
721 'src/core/lib/iomgr/socket_utils_uv.cc',
Yash Tibrewal26c78032017-09-28 14:34:43 -0700722 'src/core/lib/iomgr/socket_utils_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700723 'src/core/lib/iomgr/socket_windows.cc',
724 'src/core/lib/iomgr/tcp_client_posix.cc',
725 'src/core/lib/iomgr/tcp_client_uv.cc',
726 'src/core/lib/iomgr/tcp_client_windows.cc',
727 'src/core/lib/iomgr/tcp_posix.cc',
728 'src/core/lib/iomgr/tcp_server_posix.cc',
729 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc',
730 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc',
731 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc',
732 'src/core/lib/iomgr/tcp_server_uv.cc',
733 'src/core/lib/iomgr/tcp_server_windows.cc',
734 'src/core/lib/iomgr/tcp_uv.cc',
735 'src/core/lib/iomgr/tcp_windows.cc',
736 'src/core/lib/iomgr/time_averaged_stats.cc',
737 'src/core/lib/iomgr/timer_generic.cc',
738 'src/core/lib/iomgr/timer_heap.cc',
739 'src/core/lib/iomgr/timer_manager.cc',
740 'src/core/lib/iomgr/timer_uv.cc',
741 'src/core/lib/iomgr/udp_server.cc',
742 'src/core/lib/iomgr/unix_sockets_posix.cc',
743 'src/core/lib/iomgr/unix_sockets_posix_noop.cc',
744 'src/core/lib/iomgr/wakeup_fd_cv.cc',
745 'src/core/lib/iomgr/wakeup_fd_eventfd.cc',
746 'src/core/lib/iomgr/wakeup_fd_nospecial.cc',
747 'src/core/lib/iomgr/wakeup_fd_pipe.cc',
748 'src/core/lib/iomgr/wakeup_fd_posix.cc',
749 'src/core/lib/json/json.cc',
750 'src/core/lib/json/json_reader.cc',
751 'src/core/lib/json/json_string.cc',
752 'src/core/lib/json/json_writer.cc',
753 'src/core/lib/slice/b64.cc',
754 'src/core/lib/slice/percent_encoding.cc',
755 'src/core/lib/slice/slice.cc',
756 'src/core/lib/slice/slice_buffer.cc',
757 'src/core/lib/slice/slice_hash_table.cc',
758 'src/core/lib/slice/slice_intern.cc',
759 'src/core/lib/slice/slice_string_helpers.cc',
760 'src/core/lib/surface/alarm.cc',
761 'src/core/lib/surface/api_trace.cc',
762 'src/core/lib/surface/byte_buffer.cc',
763 'src/core/lib/surface/byte_buffer_reader.cc',
764 'src/core/lib/surface/call.cc',
765 'src/core/lib/surface/call_details.cc',
766 'src/core/lib/surface/call_log_batch.cc',
767 'src/core/lib/surface/channel.cc',
768 'src/core/lib/surface/channel_init.cc',
769 'src/core/lib/surface/channel_ping.cc',
770 'src/core/lib/surface/channel_stack_type.cc',
771 'src/core/lib/surface/completion_queue.cc',
772 'src/core/lib/surface/completion_queue_factory.cc',
773 'src/core/lib/surface/event_string.cc',
Craig Tiller8ebb5442017-04-07 16:01:55 -0700774 'src/core/lib/surface/lame_client.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700775 'src/core/lib/surface/metadata_array.cc',
776 'src/core/lib/surface/server.cc',
777 'src/core/lib/surface/validate_metadata.cc',
778 'src/core/lib/surface/version.cc',
779 'src/core/lib/transport/bdp_estimator.cc',
780 'src/core/lib/transport/byte_stream.cc',
781 'src/core/lib/transport/connectivity_state.cc',
782 'src/core/lib/transport/error_utils.cc',
783 'src/core/lib/transport/metadata.cc',
784 'src/core/lib/transport/metadata_batch.cc',
785 'src/core/lib/transport/pid_controller.cc',
786 'src/core/lib/transport/service_config.cc',
787 'src/core/lib/transport/static_metadata.cc',
788 'src/core/lib/transport/status_conversion.cc',
789 'src/core/lib/transport/timeout_encoding.cc',
790 'src/core/lib/transport/transport.cc',
791 'src/core/lib/transport/transport_op_string.cc',
792 'src/core/lib/debug/trace.cc',
793 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc',
794 'src/core/ext/transport/chttp2/transport/bin_decoder.cc',
795 'src/core/ext/transport/chttp2/transport/bin_encoder.cc',
796 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc',
797 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc',
798 'src/core/ext/transport/chttp2/transport/flow_control.cc',
799 'src/core/ext/transport/chttp2/transport/frame_data.cc',
800 'src/core/ext/transport/chttp2/transport/frame_goaway.cc',
801 'src/core/ext/transport/chttp2/transport/frame_ping.cc',
802 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc',
803 'src/core/ext/transport/chttp2/transport/frame_settings.cc',
804 'src/core/ext/transport/chttp2/transport/frame_window_update.cc',
805 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc',
806 'src/core/ext/transport/chttp2/transport/hpack_parser.cc',
807 'src/core/ext/transport/chttp2/transport/hpack_table.cc',
808 'src/core/ext/transport/chttp2/transport/http2_settings.cc',
809 'src/core/ext/transport/chttp2/transport/huffsyms.cc',
810 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc',
811 'src/core/ext/transport/chttp2/transport/parsing.cc',
812 'src/core/ext/transport/chttp2/transport/stream_lists.cc',
813 'src/core/ext/transport/chttp2/transport/stream_map.cc',
814 'src/core/ext/transport/chttp2/transport/varint.cc',
815 'src/core/ext/transport/chttp2/transport/writing.cc',
816 'src/core/ext/transport/chttp2/alpn/alpn.cc',
817 'src/core/ext/filters/http/client/http_client_filter.cc',
818 'src/core/ext/filters/http/http_filters_plugin.cc',
819 'src/core/ext/filters/http/message_compress/message_compress_filter.cc',
820 'src/core/ext/filters/http/server/http_server_filter.cc',
821 'src/core/lib/http/httpcli_security_connector.cc',
822 'src/core/lib/security/context/security_context.cc',
823 'src/core/lib/security/credentials/composite/composite_credentials.cc',
824 'src/core/lib/security/credentials/credentials.cc',
825 'src/core/lib/security/credentials/credentials_metadata.cc',
826 'src/core/lib/security/credentials/fake/fake_credentials.cc',
827 'src/core/lib/security/credentials/google_default/credentials_generic.cc',
828 'src/core/lib/security/credentials/google_default/google_default_credentials.cc',
829 'src/core/lib/security/credentials/iam/iam_credentials.cc',
830 'src/core/lib/security/credentials/jwt/json_token.cc',
831 'src/core/lib/security/credentials/jwt/jwt_credentials.cc',
832 'src/core/lib/security/credentials/jwt/jwt_verifier.cc',
833 'src/core/lib/security/credentials/oauth2/oauth2_credentials.cc',
834 'src/core/lib/security/credentials/plugin/plugin_credentials.cc',
835 'src/core/lib/security/credentials/ssl/ssl_credentials.cc',
836 'src/core/lib/security/transport/client_auth_filter.cc',
837 'src/core/lib/security/transport/lb_targets_info.cc',
838 'src/core/lib/security/transport/secure_endpoint.cc',
839 'src/core/lib/security/transport/security_connector.cc',
840 'src/core/lib/security/transport/security_handshaker.cc',
841 'src/core/lib/security/transport/server_auth_filter.cc',
842 'src/core/lib/security/transport/tsi_error.cc',
843 'src/core/lib/security/util/json_util.cc',
844 'src/core/lib/surface/init_secure.cc',
845 'src/core/tsi/fake_transport_security.cc',
846 'src/core/tsi/gts_transport_security.cc',
847 'src/core/tsi/ssl_transport_security.cc',
848 'src/core/tsi/transport_security_grpc.cc',
849 'src/core/tsi/transport_security.cc',
850 'src/core/tsi/transport_security_adapter.cc',
851 'src/core/ext/transport/chttp2/server/chttp2_server.cc',
852 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc',
853 'src/core/ext/filters/client_channel/channel_connectivity.cc',
854 'src/core/ext/filters/client_channel/client_channel.cc',
855 'src/core/ext/filters/client_channel/client_channel_factory.cc',
856 'src/core/ext/filters/client_channel/client_channel_plugin.cc',
857 'src/core/ext/filters/client_channel/connector.cc',
858 'src/core/ext/filters/client_channel/http_connect_handshaker.cc',
859 'src/core/ext/filters/client_channel/http_proxy.cc',
860 'src/core/ext/filters/client_channel/lb_policy.cc',
861 'src/core/ext/filters/client_channel/lb_policy_factory.cc',
862 'src/core/ext/filters/client_channel/lb_policy_registry.cc',
863 'src/core/ext/filters/client_channel/parse_address.cc',
864 'src/core/ext/filters/client_channel/proxy_mapper.cc',
865 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc',
866 'src/core/ext/filters/client_channel/resolver.cc',
867 'src/core/ext/filters/client_channel/resolver_factory.cc',
868 'src/core/ext/filters/client_channel/resolver_registry.cc',
869 'src/core/ext/filters/client_channel/retry_throttle.cc',
870 'src/core/ext/filters/client_channel/subchannel.cc',
871 'src/core/ext/filters/client_channel/subchannel_index.cc',
872 'src/core/ext/filters/client_channel/uri_parser.cc',
873 'src/core/ext/filters/deadline/deadline_filter.cc',
874 'src/core/ext/transport/chttp2/client/chttp2_connector.cc',
875 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc',
876 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc',
877 'src/core/ext/transport/chttp2/client/insecure/channel_create.cc',
878 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc',
879 'src/core/ext/transport/inproc/inproc_plugin.cc',
880 'src/core/ext/transport/inproc/inproc_transport.cc',
881 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc',
882 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc',
883 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc',
884 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc',
885 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700886 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
Craig Tillereb841e22016-02-11 15:49:16 -0800887 'third_party/nanopb/pb_common.c',
888 'third_party/nanopb/pb_decode.c',
889 'third_party/nanopb/pb_encode.c',
Yash Tibrewal83062842017-09-21 18:56:08 -0700890 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc',
891 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc',
892 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc',
893 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc',
894 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc',
895 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc',
896 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc',
897 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc',
898 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc',
899 'src/core/ext/filters/load_reporting/server_load_reporting_filter.cc',
900 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc',
901 'src/core/ext/census/base_resources.cc',
902 'src/core/ext/census/context.cc',
Alistair Veitch30fe6322016-05-23 10:11:28 -0700903 'src/core/ext/census/gen/census.pb.c',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700904 'src/core/ext/census/gen/trace_context.pb.c',
Yash Tibrewal83062842017-09-21 18:56:08 -0700905 'src/core/ext/census/grpc_context.cc',
906 'src/core/ext/census/grpc_filter.cc',
907 'src/core/ext/census/grpc_plugin.cc',
908 'src/core/ext/census/initialize.cc',
909 'src/core/ext/census/intrusive_hash_map.cc',
910 'src/core/ext/census/mlog.cc',
911 'src/core/ext/census/operation.cc',
912 'src/core/ext/census/placeholders.cc',
913 'src/core/ext/census/resource.cc',
914 'src/core/ext/census/trace_context.cc',
915 'src/core/ext/census/tracing.cc',
916 'src/core/ext/filters/max_age/max_age_filter.cc',
917 'src/core/ext/filters/message_size/message_size_filter.cc',
918 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc',
919 'src/core/ext/filters/workarounds/workaround_utils.cc',
Yash Tibrewal1c9b5842017-09-21 15:49:55 -0700920 'src/core/plugin_registry/grpc_plugin_registry.cc',
murgatroid99fd994f12015-10-09 14:02:28 -0700921 ],
murgatroid99e9295472017-07-19 15:58:40 -0700922 'conditions': [
923 ['OS == "mac"', {
924 'xcode_settings': {
925 'MACOSX_DEPLOYMENT_TARGET': '10.9'
926 }
927 }]
928 ]
murgatroid99fd994f12015-10-09 14:02:28 -0700929 },
murgatroid992af89e42015-10-01 11:54:00 -0700930 {
931 'include_dirs': [
932 "<!(node -e \"require('nan')\")"
933 ],
934 'cflags': [
murgatroid992af89e42015-10-01 11:54:00 -0700935 '-pthread',
murgatroid992af89e42015-10-01 11:54:00 -0700936 '-zdefs',
murgatroid992af89e42015-10-01 11:54:00 -0700937 '-Wno-error=deprecated-declarations'
938 ],
murgatroid992af89e42015-10-01 11:54:00 -0700939 "conditions": [
murgatroid99dc230462016-10-25 14:12:42 -0700940 ['OS=="win" or runtime=="electron"', {
941 'dependencies': [
942 "boringssl",
943 ]
944 }],
murgatroid995c56c922016-01-25 13:32:52 -0800945 ['OS=="win"', {
946 'dependencies': [
murgatroid995c56c922016-01-25 13:32:52 -0800947 "z",
948 ]
Craig Tiller4bef7ce2016-02-02 08:38:43 -0800949 }],
950 ['OS=="linux"', {
951 'ldflags': [
952 '-Wl,-wrap,memcpy'
953 ]
murgatroid99e9295472017-07-19 15:58:40 -0700954 }],
955 ['OS == "mac"', {
956 'xcode_settings': {
957 'MACOSX_DEPLOYMENT_TARGET': '10.9'
958 }
murgatroid992af89e42015-10-01 11:54:00 -0700959 }]
960 ],
961 "target_name": "grpc_node",
962 "sources": [
963 "src/node/ext/byte_buffer.cc",
964 "src/node/ext/call.cc",
murgatroid9947f519e2015-10-07 12:34:24 -0700965 "src/node/ext/call_credentials.cc",
murgatroid992af89e42015-10-01 11:54:00 -0700966 "src/node/ext/channel.cc",
murgatroid9947f519e2015-10-07 12:34:24 -0700967 "src/node/ext/channel_credentials.cc",
murgatroid99f94f64f2017-04-24 13:35:21 -0700968 "src/node/ext/completion_queue.cc",
murgatroid992af89e42015-10-01 11:54:00 -0700969 "src/node/ext/node_grpc.cc",
970 "src/node/ext/server.cc",
971 "src/node/ext/server_credentials.cc",
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800972 "src/node/ext/slice.cc",
murgatroid99879bc4f2015-11-05 10:35:04 -0800973 "src/node/ext/timeval.cc",
murgatroid992af89e42015-10-01 11:54:00 -0700974 ],
975 "dependencies": [
murgatroid99879bc4f2015-11-05 10:35:04 -0800976 "grpc",
Craig Tillerda179ce2016-02-09 12:01:53 -0800977 "gpr",
murgatroid992af89e42015-10-01 11:54:00 -0700978 ]
murgatroid99879bc4f2015-11-05 10:35:04 -0800979 },
murgatroid99e190f352016-01-20 13:52:08 -0800980 {
981 "target_name": "action_after_build",
982 "type": "none",
983 "dependencies": [ "<(module_name)" ],
984 "copies": [
985 {
986 "files": [ "<(PRODUCT_DIR)/<(module_name).node"],
987 "destination": "<(module_path)"
988 }
989 ]
990 }
murgatroid992af89e42015-10-01 11:54:00 -0700991 ]
992}