blob: eacc7c44f6ab172a8531f2dfdee5d3b0ff4f1de8 [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
murgatroid997586db82016-01-20 14:02:42 -08008# Copyright 2015-2016, Google Inc.
murgatroid99f33b1322015-10-05 09:45:04 -07009# All rights reserved.
10#
11# Redistribution and use in source and binary forms, with or without
12# modification, are permitted provided that the following conditions are
13# met:
14#
15# * Redistributions of source code must retain the above copyright
16# notice, this list of conditions and the following disclaimer.
17# * Redistributions in binary form must reproduce the above
18# copyright notice, this list of conditions and the following disclaimer
19# in the documentation and/or other materials provided with the
20# distribution.
21# * Neither the name of Google Inc. nor the names of its
22# contributors may be used to endorse or promote products derived from
23# this software without specific prior written permission.
24#
25# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
murgatroid99fd994f12015-10-09 14:02:28 -070036
37# Some of this file is built with the help of
38# https://n8.io/converting-a-c-library-to-gyp/
murgatroid992af89e42015-10-01 11:54:00 -070039{
murgatroid99fd994f12015-10-09 14:02:28 -070040 'target_defaults': {
murgatroid99fd994f12015-10-09 14:02:28 -070041 'include_dirs': [
42 '.',
murgatroid995c56c922016-01-25 13:32:52 -080043 'include'
murgatroid99a89d9e72015-10-13 16:03:16 -070044 ],
45 'conditions': [
murgatroid995c56c922016-01-25 13:32:52 -080046 ['OS == "win"', {
Michael Lumishe2f34652016-01-27 16:41:54 -080047 "include_dirs": [ "third_party/boringssl/include" ],
48 "defines": [
49 '_WIN32_WINNT=0x0600',
50 'WIN32_LEAN_AND_MEAN',
51 '_HAS_EXCEPTIONS=0',
52 'UNICODE',
53 '_UNICODE',
54 'NOMINMAX',
55 'OPENSSL_NO_ASM'
56 ],
57 "msvs_settings": {
58 'VCCLCompilerTool': {
59 'RuntimeLibrary': 1, # static debug
60 }
61 },
62 "libraries": [
63 "ws2_32"
64 ]
65 }, { # OS != "win"
murgatroid99af6c1782016-01-28 13:14:24 -080066 # Empirically, Node only exports ALPN symbols if its major version is >0.
67 # io.js always reports versions >0 and always exports ALPN symbols.
68 # Therefore, Node's major version will be truthy if and only if it
69 # supports ALPN. The output of "node -v" is v[major].[minor].[patch],
70 # like "v4.1.1" in a recent version. We use cut to split by period and
71 # take the first field (resulting in "v[major]"), then use cut again
72 # to take all but the first character, removing the "v".
73 'defines': [
74 'TSI_OPENSSL_ALPN_SUPPORT=<!(node --version | cut -d. -f1 | cut -c2-)'
75 ],
Michael Lumishe2f34652016-01-27 16:41:54 -080076 'variables': {
77 'config': '<!(echo $CONFIG)'
78 },
murgatroid995c56c922016-01-25 13:32:52 -080079 'include_dirs': [
80 '<(node_root_dir)/deps/openssl/openssl/include',
81 '<(node_root_dir)/deps/zlib'
82 ],
murgatroid99a89d9e72015-10-13 16:03:16 -070083 'conditions': [
84 ['config=="gcov"', {
85 'cflags': [
86 '-ftest-coverage',
87 '-fprofile-arcs',
88 '-O0'
89 ],
90 'ldflags': [
91 '-ftest-coverage',
92 '-fprofile-arcs'
93 ]
94 }
murgatroid995c56c922016-01-25 13:32:52 -080095 ],
96 ["target_arch=='ia32'", {
97 "include_dirs": [ "<(node_root_dir)/deps/openssl/config/piii" ]
98 }],
99 ["target_arch=='x64'", {
100 "include_dirs": [ "<(node_root_dir)/deps/openssl/config/k8" ]
101 }],
102 ["target_arch=='arm'", {
103 "include_dirs": [ "<(node_root_dir)/deps/openssl/config/arm" ]
104 }]
murgatroid99a89d9e72015-10-13 16:03:16 -0700105 ]
murgatroid99afe46982015-10-23 10:17:26 -0700106 }]
murgatroid99fd994f12015-10-09 14:02:28 -0700107 ]
108 },
murgatroid995c56c922016-01-25 13:32:52 -0800109 'conditions': [
110 ['OS == "win"', {
111 'targets': [
murgatroid99af6c1782016-01-28 13:14:24 -0800112 {
113 # IMPORTANT WINDOWS BUILD INFORMATION
114 # This library does not build on Windows without modifying the Node
115 # development packages that node-gyp downloads in order to build.
116 # Due to https://github.com/nodejs/node/issues/4932, the headers for
117 # BoringSSL conflict with the OpenSSL headers included by default
118 # when including the Node headers. The remedy for this is to remove
119 # the OpenSSL headers, from the downloaded Node development package,
120 # which is typically located in `.node-gyp` in your home directory.
121 'target_name': 'windows_build_warning',
122 'actions': [
123 {
124 'message': "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/"
125 }
126 ]
127 },
murgatroid995c56c922016-01-25 13:32:52 -0800128 # Only want to compile BoringSSL and zlib under Windows
129 {
130 'cflags': [
131 '-std=c99',
132 '-Wall',
133 '-Werror'
134 ],
135 'target_name': 'boringssl',
136 'product_prefix': 'lib',
137 'type': 'static_library',
138 'dependencies': [
139 ],
140 'sources': [
141 'src/boringssl/err_data.c',
142 'third_party/boringssl/crypto/aes/aes.c',
143 'third_party/boringssl/crypto/aes/mode_wrappers.c',
144 'third_party/boringssl/crypto/asn1/a_bitstr.c',
145 'third_party/boringssl/crypto/asn1/a_bool.c',
146 'third_party/boringssl/crypto/asn1/a_bytes.c',
147 'third_party/boringssl/crypto/asn1/a_d2i_fp.c',
148 'third_party/boringssl/crypto/asn1/a_dup.c',
149 'third_party/boringssl/crypto/asn1/a_enum.c',
150 'third_party/boringssl/crypto/asn1/a_gentm.c',
151 'third_party/boringssl/crypto/asn1/a_i2d_fp.c',
152 'third_party/boringssl/crypto/asn1/a_int.c',
153 'third_party/boringssl/crypto/asn1/a_mbstr.c',
154 'third_party/boringssl/crypto/asn1/a_object.c',
155 'third_party/boringssl/crypto/asn1/a_octet.c',
156 'third_party/boringssl/crypto/asn1/a_print.c',
157 'third_party/boringssl/crypto/asn1/a_strnid.c',
158 'third_party/boringssl/crypto/asn1/a_time.c',
159 'third_party/boringssl/crypto/asn1/a_type.c',
160 'third_party/boringssl/crypto/asn1/a_utctm.c',
161 'third_party/boringssl/crypto/asn1/a_utf8.c',
162 'third_party/boringssl/crypto/asn1/asn1_lib.c',
163 'third_party/boringssl/crypto/asn1/asn1_par.c',
164 'third_party/boringssl/crypto/asn1/asn_pack.c',
165 'third_party/boringssl/crypto/asn1/bio_asn1.c',
166 'third_party/boringssl/crypto/asn1/bio_ndef.c',
167 'third_party/boringssl/crypto/asn1/f_enum.c',
168 'third_party/boringssl/crypto/asn1/f_int.c',
169 'third_party/boringssl/crypto/asn1/f_string.c',
170 'third_party/boringssl/crypto/asn1/t_bitst.c',
171 'third_party/boringssl/crypto/asn1/t_pkey.c',
172 'third_party/boringssl/crypto/asn1/tasn_dec.c',
173 'third_party/boringssl/crypto/asn1/tasn_enc.c',
174 'third_party/boringssl/crypto/asn1/tasn_fre.c',
175 'third_party/boringssl/crypto/asn1/tasn_new.c',
176 'third_party/boringssl/crypto/asn1/tasn_prn.c',
177 'third_party/boringssl/crypto/asn1/tasn_typ.c',
178 'third_party/boringssl/crypto/asn1/tasn_utl.c',
179 'third_party/boringssl/crypto/asn1/x_bignum.c',
180 'third_party/boringssl/crypto/asn1/x_long.c',
181 'third_party/boringssl/crypto/base64/base64.c',
182 'third_party/boringssl/crypto/bio/bio.c',
183 'third_party/boringssl/crypto/bio/bio_mem.c',
184 'third_party/boringssl/crypto/bio/buffer.c',
185 'third_party/boringssl/crypto/bio/connect.c',
186 'third_party/boringssl/crypto/bio/fd.c',
187 'third_party/boringssl/crypto/bio/file.c',
188 'third_party/boringssl/crypto/bio/hexdump.c',
189 'third_party/boringssl/crypto/bio/pair.c',
190 'third_party/boringssl/crypto/bio/printf.c',
191 'third_party/boringssl/crypto/bio/socket.c',
192 'third_party/boringssl/crypto/bio/socket_helper.c',
193 'third_party/boringssl/crypto/bn/add.c',
194 'third_party/boringssl/crypto/bn/asm/x86_64-gcc.c',
195 'third_party/boringssl/crypto/bn/bn.c',
196 'third_party/boringssl/crypto/bn/bn_asn1.c',
197 'third_party/boringssl/crypto/bn/cmp.c',
198 'third_party/boringssl/crypto/bn/convert.c',
199 'third_party/boringssl/crypto/bn/ctx.c',
200 'third_party/boringssl/crypto/bn/div.c',
201 'third_party/boringssl/crypto/bn/exponentiation.c',
202 'third_party/boringssl/crypto/bn/gcd.c',
203 'third_party/boringssl/crypto/bn/generic.c',
204 'third_party/boringssl/crypto/bn/kronecker.c',
205 'third_party/boringssl/crypto/bn/montgomery.c',
206 'third_party/boringssl/crypto/bn/mul.c',
207 'third_party/boringssl/crypto/bn/prime.c',
208 'third_party/boringssl/crypto/bn/random.c',
209 'third_party/boringssl/crypto/bn/rsaz_exp.c',
210 'third_party/boringssl/crypto/bn/shift.c',
211 'third_party/boringssl/crypto/bn/sqrt.c',
212 'third_party/boringssl/crypto/buf/buf.c',
213 'third_party/boringssl/crypto/bytestring/ber.c',
214 'third_party/boringssl/crypto/bytestring/cbb.c',
215 'third_party/boringssl/crypto/bytestring/cbs.c',
216 'third_party/boringssl/crypto/chacha/chacha_generic.c',
217 'third_party/boringssl/crypto/chacha/chacha_vec.c',
218 'third_party/boringssl/crypto/cipher/aead.c',
219 'third_party/boringssl/crypto/cipher/cipher.c',
220 'third_party/boringssl/crypto/cipher/derive_key.c',
221 'third_party/boringssl/crypto/cipher/e_aes.c',
222 'third_party/boringssl/crypto/cipher/e_chacha20poly1305.c',
223 'third_party/boringssl/crypto/cipher/e_des.c',
224 'third_party/boringssl/crypto/cipher/e_null.c',
225 'third_party/boringssl/crypto/cipher/e_rc2.c',
226 'third_party/boringssl/crypto/cipher/e_rc4.c',
227 'third_party/boringssl/crypto/cipher/e_ssl3.c',
228 'third_party/boringssl/crypto/cipher/e_tls.c',
229 'third_party/boringssl/crypto/cipher/tls_cbc.c',
230 'third_party/boringssl/crypto/cmac/cmac.c',
231 'third_party/boringssl/crypto/conf/conf.c',
232 'third_party/boringssl/crypto/cpu-arm.c',
233 'third_party/boringssl/crypto/cpu-intel.c',
234 'third_party/boringssl/crypto/crypto.c',
235 'third_party/boringssl/crypto/curve25519/curve25519.c',
236 'third_party/boringssl/crypto/des/des.c',
237 'third_party/boringssl/crypto/dh/check.c',
238 'third_party/boringssl/crypto/dh/dh.c',
239 'third_party/boringssl/crypto/dh/dh_asn1.c',
240 'third_party/boringssl/crypto/dh/params.c',
241 'third_party/boringssl/crypto/digest/digest.c',
242 'third_party/boringssl/crypto/digest/digests.c',
243 'third_party/boringssl/crypto/directory_posix.c',
244 'third_party/boringssl/crypto/directory_win.c',
245 'third_party/boringssl/crypto/dsa/dsa.c',
246 'third_party/boringssl/crypto/dsa/dsa_asn1.c',
247 'third_party/boringssl/crypto/ec/ec.c',
248 'third_party/boringssl/crypto/ec/ec_asn1.c',
249 'third_party/boringssl/crypto/ec/ec_key.c',
250 'third_party/boringssl/crypto/ec/ec_montgomery.c',
251 'third_party/boringssl/crypto/ec/oct.c',
252 'third_party/boringssl/crypto/ec/p224-64.c',
253 'third_party/boringssl/crypto/ec/p256-64.c',
254 'third_party/boringssl/crypto/ec/p256-x86_64.c',
255 'third_party/boringssl/crypto/ec/simple.c',
256 'third_party/boringssl/crypto/ec/util-64.c',
257 'third_party/boringssl/crypto/ec/wnaf.c',
258 'third_party/boringssl/crypto/ecdh/ecdh.c',
259 'third_party/boringssl/crypto/ecdsa/ecdsa.c',
260 'third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c',
261 'third_party/boringssl/crypto/engine/engine.c',
262 'third_party/boringssl/crypto/err/err.c',
263 'third_party/boringssl/crypto/evp/algorithm.c',
264 'third_party/boringssl/crypto/evp/digestsign.c',
265 'third_party/boringssl/crypto/evp/evp.c',
266 'third_party/boringssl/crypto/evp/evp_asn1.c',
267 'third_party/boringssl/crypto/evp/evp_ctx.c',
268 'third_party/boringssl/crypto/evp/p_dsa_asn1.c',
269 'third_party/boringssl/crypto/evp/p_ec.c',
270 'third_party/boringssl/crypto/evp/p_ec_asn1.c',
271 'third_party/boringssl/crypto/evp/p_rsa.c',
272 'third_party/boringssl/crypto/evp/p_rsa_asn1.c',
273 'third_party/boringssl/crypto/evp/pbkdf.c',
274 'third_party/boringssl/crypto/evp/sign.c',
275 'third_party/boringssl/crypto/ex_data.c',
276 'third_party/boringssl/crypto/hkdf/hkdf.c',
277 'third_party/boringssl/crypto/hmac/hmac.c',
278 'third_party/boringssl/crypto/lhash/lhash.c',
279 'third_party/boringssl/crypto/md4/md4.c',
280 'third_party/boringssl/crypto/md5/md5.c',
281 'third_party/boringssl/crypto/mem.c',
282 'third_party/boringssl/crypto/modes/cbc.c',
283 'third_party/boringssl/crypto/modes/cfb.c',
284 'third_party/boringssl/crypto/modes/ctr.c',
285 'third_party/boringssl/crypto/modes/gcm.c',
286 'third_party/boringssl/crypto/modes/ofb.c',
287 'third_party/boringssl/crypto/obj/obj.c',
288 'third_party/boringssl/crypto/obj/obj_xref.c',
289 'third_party/boringssl/crypto/pem/pem_all.c',
290 'third_party/boringssl/crypto/pem/pem_info.c',
291 'third_party/boringssl/crypto/pem/pem_lib.c',
292 'third_party/boringssl/crypto/pem/pem_oth.c',
293 'third_party/boringssl/crypto/pem/pem_pk8.c',
294 'third_party/boringssl/crypto/pem/pem_pkey.c',
295 'third_party/boringssl/crypto/pem/pem_x509.c',
296 'third_party/boringssl/crypto/pem/pem_xaux.c',
297 'third_party/boringssl/crypto/pkcs8/p5_pbe.c',
298 'third_party/boringssl/crypto/pkcs8/p5_pbev2.c',
299 'third_party/boringssl/crypto/pkcs8/p8_pkey.c',
300 'third_party/boringssl/crypto/pkcs8/pkcs8.c',
301 'third_party/boringssl/crypto/poly1305/poly1305.c',
302 'third_party/boringssl/crypto/poly1305/poly1305_arm.c',
303 'third_party/boringssl/crypto/poly1305/poly1305_vec.c',
304 'third_party/boringssl/crypto/rand/rand.c',
305 'third_party/boringssl/crypto/rand/urandom.c',
306 'third_party/boringssl/crypto/rand/windows.c',
307 'third_party/boringssl/crypto/rc4/rc4.c',
308 'third_party/boringssl/crypto/refcount_c11.c',
309 'third_party/boringssl/crypto/refcount_lock.c',
310 'third_party/boringssl/crypto/rsa/blinding.c',
311 'third_party/boringssl/crypto/rsa/padding.c',
312 'third_party/boringssl/crypto/rsa/rsa.c',
313 'third_party/boringssl/crypto/rsa/rsa_asn1.c',
314 'third_party/boringssl/crypto/rsa/rsa_impl.c',
315 'third_party/boringssl/crypto/sha/sha1.c',
316 'third_party/boringssl/crypto/sha/sha256.c',
317 'third_party/boringssl/crypto/sha/sha512.c',
318 'third_party/boringssl/crypto/stack/stack.c',
319 'third_party/boringssl/crypto/thread.c',
320 'third_party/boringssl/crypto/thread_none.c',
321 'third_party/boringssl/crypto/thread_pthread.c',
322 'third_party/boringssl/crypto/thread_win.c',
323 'third_party/boringssl/crypto/time_support.c',
324 'third_party/boringssl/crypto/x509/a_digest.c',
325 'third_party/boringssl/crypto/x509/a_sign.c',
326 'third_party/boringssl/crypto/x509/a_strex.c',
327 'third_party/boringssl/crypto/x509/a_verify.c',
328 'third_party/boringssl/crypto/x509/asn1_gen.c',
329 'third_party/boringssl/crypto/x509/by_dir.c',
330 'third_party/boringssl/crypto/x509/by_file.c',
331 'third_party/boringssl/crypto/x509/i2d_pr.c',
332 'third_party/boringssl/crypto/x509/pkcs7.c',
333 'third_party/boringssl/crypto/x509/t_crl.c',
334 'third_party/boringssl/crypto/x509/t_req.c',
335 'third_party/boringssl/crypto/x509/t_x509.c',
336 'third_party/boringssl/crypto/x509/t_x509a.c',
337 'third_party/boringssl/crypto/x509/x509.c',
338 'third_party/boringssl/crypto/x509/x509_att.c',
339 'third_party/boringssl/crypto/x509/x509_cmp.c',
340 'third_party/boringssl/crypto/x509/x509_d2.c',
341 'third_party/boringssl/crypto/x509/x509_def.c',
342 'third_party/boringssl/crypto/x509/x509_ext.c',
343 'third_party/boringssl/crypto/x509/x509_lu.c',
344 'third_party/boringssl/crypto/x509/x509_obj.c',
345 'third_party/boringssl/crypto/x509/x509_r2x.c',
346 'third_party/boringssl/crypto/x509/x509_req.c',
347 'third_party/boringssl/crypto/x509/x509_set.c',
348 'third_party/boringssl/crypto/x509/x509_trs.c',
349 'third_party/boringssl/crypto/x509/x509_txt.c',
350 'third_party/boringssl/crypto/x509/x509_v3.c',
351 'third_party/boringssl/crypto/x509/x509_vfy.c',
352 'third_party/boringssl/crypto/x509/x509_vpm.c',
353 'third_party/boringssl/crypto/x509/x509cset.c',
354 'third_party/boringssl/crypto/x509/x509name.c',
355 'third_party/boringssl/crypto/x509/x509rset.c',
356 'third_party/boringssl/crypto/x509/x509spki.c',
357 'third_party/boringssl/crypto/x509/x509type.c',
358 'third_party/boringssl/crypto/x509/x_algor.c',
359 'third_party/boringssl/crypto/x509/x_all.c',
360 'third_party/boringssl/crypto/x509/x_attrib.c',
361 'third_party/boringssl/crypto/x509/x_crl.c',
362 'third_party/boringssl/crypto/x509/x_exten.c',
363 'third_party/boringssl/crypto/x509/x_info.c',
364 'third_party/boringssl/crypto/x509/x_name.c',
365 'third_party/boringssl/crypto/x509/x_pkey.c',
366 'third_party/boringssl/crypto/x509/x_pubkey.c',
367 'third_party/boringssl/crypto/x509/x_req.c',
368 'third_party/boringssl/crypto/x509/x_sig.c',
369 'third_party/boringssl/crypto/x509/x_spki.c',
370 'third_party/boringssl/crypto/x509/x_val.c',
371 'third_party/boringssl/crypto/x509/x_x509.c',
372 'third_party/boringssl/crypto/x509/x_x509a.c',
373 'third_party/boringssl/crypto/x509v3/pcy_cache.c',
374 'third_party/boringssl/crypto/x509v3/pcy_data.c',
375 'third_party/boringssl/crypto/x509v3/pcy_lib.c',
376 'third_party/boringssl/crypto/x509v3/pcy_map.c',
377 'third_party/boringssl/crypto/x509v3/pcy_node.c',
378 'third_party/boringssl/crypto/x509v3/pcy_tree.c',
379 'third_party/boringssl/crypto/x509v3/v3_akey.c',
380 'third_party/boringssl/crypto/x509v3/v3_akeya.c',
381 'third_party/boringssl/crypto/x509v3/v3_alt.c',
382 'third_party/boringssl/crypto/x509v3/v3_bcons.c',
383 'third_party/boringssl/crypto/x509v3/v3_bitst.c',
384 'third_party/boringssl/crypto/x509v3/v3_conf.c',
385 'third_party/boringssl/crypto/x509v3/v3_cpols.c',
386 'third_party/boringssl/crypto/x509v3/v3_crld.c',
387 'third_party/boringssl/crypto/x509v3/v3_enum.c',
388 'third_party/boringssl/crypto/x509v3/v3_extku.c',
389 'third_party/boringssl/crypto/x509v3/v3_genn.c',
390 'third_party/boringssl/crypto/x509v3/v3_ia5.c',
391 'third_party/boringssl/crypto/x509v3/v3_info.c',
392 'third_party/boringssl/crypto/x509v3/v3_int.c',
393 'third_party/boringssl/crypto/x509v3/v3_lib.c',
394 'third_party/boringssl/crypto/x509v3/v3_ncons.c',
395 'third_party/boringssl/crypto/x509v3/v3_pci.c',
396 'third_party/boringssl/crypto/x509v3/v3_pcia.c',
397 'third_party/boringssl/crypto/x509v3/v3_pcons.c',
398 'third_party/boringssl/crypto/x509v3/v3_pku.c',
399 'third_party/boringssl/crypto/x509v3/v3_pmaps.c',
400 'third_party/boringssl/crypto/x509v3/v3_prn.c',
401 'third_party/boringssl/crypto/x509v3/v3_purp.c',
402 'third_party/boringssl/crypto/x509v3/v3_skey.c',
403 'third_party/boringssl/crypto/x509v3/v3_sxnet.c',
404 'third_party/boringssl/crypto/x509v3/v3_utl.c',
405 'third_party/boringssl/ssl/custom_extensions.c',
406 'third_party/boringssl/ssl/d1_both.c',
407 'third_party/boringssl/ssl/d1_clnt.c',
408 'third_party/boringssl/ssl/d1_lib.c',
409 'third_party/boringssl/ssl/d1_meth.c',
410 'third_party/boringssl/ssl/d1_pkt.c',
411 'third_party/boringssl/ssl/d1_srtp.c',
412 'third_party/boringssl/ssl/d1_srvr.c',
413 'third_party/boringssl/ssl/dtls_record.c',
414 'third_party/boringssl/ssl/pqueue/pqueue.c',
415 'third_party/boringssl/ssl/s3_both.c',
416 'third_party/boringssl/ssl/s3_clnt.c',
417 'third_party/boringssl/ssl/s3_enc.c',
418 'third_party/boringssl/ssl/s3_lib.c',
419 'third_party/boringssl/ssl/s3_meth.c',
420 'third_party/boringssl/ssl/s3_pkt.c',
421 'third_party/boringssl/ssl/s3_srvr.c',
422 'third_party/boringssl/ssl/ssl_aead_ctx.c',
423 'third_party/boringssl/ssl/ssl_asn1.c',
424 'third_party/boringssl/ssl/ssl_buffer.c',
425 'third_party/boringssl/ssl/ssl_cert.c',
426 'third_party/boringssl/ssl/ssl_cipher.c',
427 'third_party/boringssl/ssl/ssl_file.c',
428 'third_party/boringssl/ssl/ssl_lib.c',
429 'third_party/boringssl/ssl/ssl_rsa.c',
430 'third_party/boringssl/ssl/ssl_session.c',
431 'third_party/boringssl/ssl/ssl_stat.c',
432 'third_party/boringssl/ssl/t1_enc.c',
433 'third_party/boringssl/ssl/t1_lib.c',
434 'third_party/boringssl/ssl/tls_record.c',
murgatroid99af6c1782016-01-28 13:14:24 -0800435 ]
murgatroid995c56c922016-01-25 13:32:52 -0800436 },
437 {
438 'cflags': [
439 '-std=c99',
440 '-Wall',
441 '-Werror'
442 ],
443 'target_name': 'z',
444 'product_prefix': 'lib',
445 'type': 'static_library',
446 'dependencies': [
447 ],
448 'sources': [
449 'third_party/zlib/adler32.c',
450 'third_party/zlib/compress.c',
451 'third_party/zlib/crc32.c',
452 'third_party/zlib/deflate.c',
453 'third_party/zlib/gzclose.c',
454 'third_party/zlib/gzlib.c',
455 'third_party/zlib/gzread.c',
456 'third_party/zlib/gzwrite.c',
457 'third_party/zlib/infback.c',
458 'third_party/zlib/inffast.c',
459 'third_party/zlib/inflate.c',
460 'third_party/zlib/inftrees.c',
461 'third_party/zlib/trees.c',
462 'third_party/zlib/uncompr.c',
463 'third_party/zlib/zutil.c',
murgatroid99af6c1782016-01-28 13:14:24 -0800464 ]
murgatroid995c56c922016-01-25 13:32:52 -0800465 },
466 ]
467 }]
468 ],
murgatroid99fd994f12015-10-09 14:02:28 -0700469 'targets': [
470 {
murgatroid993abed312016-01-07 17:16:46 -0800471 'cflags': [
472 '-std=c99',
473 '-Wall',
474 '-Werror'
475 ],
murgatroid99fd994f12015-10-09 14:02:28 -0700476 'target_name': 'gpr',
477 'product_prefix': 'lib',
478 'type': 'static_library',
479 'dependencies': [
480 ],
481 'sources': [
Craig Tiller95190092015-10-10 20:06:35 -0700482 'src/core/profiling/basic_timers.c',
483 'src/core/profiling/stap_timers.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700484 'src/core/support/alloc.c',
Craig Tillerfba79f22015-11-23 11:06:55 -0800485 'src/core/support/avl.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700486 'src/core/support/cmdline.c',
487 'src/core/support/cpu_iphone.c',
488 'src/core/support/cpu_linux.c',
489 'src/core/support/cpu_posix.c',
490 'src/core/support/cpu_windows.c',
491 'src/core/support/env_linux.c',
492 'src/core/support/env_posix.c',
493 'src/core/support/env_win32.c',
494 'src/core/support/file.c',
495 'src/core/support/file_posix.c',
496 'src/core/support/file_win32.c',
497 'src/core/support/histogram.c',
498 'src/core/support/host_port.c',
499 'src/core/support/log.c',
500 'src/core/support/log_android.c',
501 'src/core/support/log_linux.c',
502 'src/core/support/log_posix.c',
503 'src/core/support/log_win32.c',
504 'src/core/support/murmur_hash.c',
505 'src/core/support/slice.c',
506 'src/core/support/slice_buffer.c',
507 'src/core/support/stack_lockfree.c',
508 'src/core/support/string.c',
509 'src/core/support/string_posix.c',
510 'src/core/support/string_win32.c',
511 'src/core/support/subprocess_posix.c',
512 'src/core/support/sync.c',
513 'src/core/support/sync_posix.c',
514 'src/core/support/sync_win32.c',
515 'src/core/support/thd.c',
516 'src/core/support/thd_posix.c',
517 'src/core/support/thd_win32.c',
518 'src/core/support/time.c',
519 'src/core/support/time_posix.c',
Craig Tiller95190092015-10-10 20:06:35 -0700520 'src/core/support/time_precise.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700521 'src/core/support/time_win32.c',
522 'src/core/support/tls_pthread.c',
523 ],
murgatroid996ffdb942015-10-22 16:10:05 -0700524 "conditions": [
525 ['OS == "mac"', {
526 'xcode_settings': {
murgatroid9922c448b2015-10-23 10:25:30 -0700527 'MACOSX_DEPLOYMENT_TARGET': '10.9'
murgatroid996ffdb942015-10-22 16:10:05 -0700528 }
529 }]
murgatroid995c56c922016-01-25 13:32:52 -0800530 ]
murgatroid99fd994f12015-10-09 14:02:28 -0700531 },
532 {
murgatroid993abed312016-01-07 17:16:46 -0800533 'cflags': [
534 '-std=c99',
535 '-Wall',
536 '-Werror'
537 ],
murgatroid99fd994f12015-10-09 14:02:28 -0700538 'target_name': 'grpc',
539 'product_prefix': 'lib',
540 'type': 'static_library',
541 'dependencies': [
542 'gpr',
543 ],
544 'sources': [
545 'src/core/httpcli/httpcli_security_connector.c',
546 'src/core/security/base64.c',
547 'src/core/security/client_auth_filter.c',
548 'src/core/security/credentials.c',
549 'src/core/security/credentials_metadata.c',
550 'src/core/security/credentials_posix.c',
551 'src/core/security/credentials_win32.c',
552 'src/core/security/google_default_credentials.c',
553 'src/core/security/handshake.c',
554 'src/core/security/json_token.c',
555 'src/core/security/jwt_verifier.c',
556 'src/core/security/secure_endpoint.c',
557 'src/core/security/security_connector.c',
558 'src/core/security/security_context.c',
559 'src/core/security/server_auth_filter.c',
560 'src/core/security/server_secure_chttp2.c',
561 'src/core/surface/init_secure.c',
562 'src/core/surface/secure_channel_create.c',
563 'src/core/tsi/fake_transport_security.c',
564 'src/core/tsi/ssl_transport_security.c',
565 'src/core/tsi/transport_security.c',
566 'src/core/census/grpc_context.c',
567 'src/core/census/grpc_filter.c',
568 'src/core/channel/channel_args.c',
569 'src/core/channel/channel_stack.c',
570 'src/core/channel/client_channel.c',
David Garcia Quintasb5ab8a22015-10-19 15:41:42 -0700571 'src/core/channel/client_uchannel.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700572 'src/core/channel/compress_filter.c',
573 'src/core/channel/connected_channel.c',
574 'src/core/channel/http_client_filter.c',
575 'src/core/channel/http_server_filter.c',
Craig Tillerca1593a2015-11-02 14:08:33 -0800576 'src/core/channel/subchannel_call_holder.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700577 'src/core/client_config/client_config.c',
578 'src/core/client_config/connector.c',
yang-ga6124122015-11-05 22:36:20 -0800579 'src/core/client_config/default_initial_connect_string.c',
580 'src/core/client_config/initial_connect_string.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700581 'src/core/client_config/lb_policies/pick_first.c',
582 'src/core/client_config/lb_policies/round_robin.c',
583 'src/core/client_config/lb_policy.c',
584 'src/core/client_config/lb_policy_factory.c',
585 'src/core/client_config/lb_policy_registry.c',
586 'src/core/client_config/resolver.c',
587 'src/core/client_config/resolver_factory.c',
588 'src/core/client_config/resolver_registry.c',
589 'src/core/client_config/resolvers/dns_resolver.c',
590 'src/core/client_config/resolvers/sockaddr_resolver.c',
591 'src/core/client_config/subchannel.c',
592 'src/core/client_config/subchannel_factory.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700593 'src/core/client_config/uri_parser.c',
594 'src/core/compression/algorithm.c',
595 'src/core/compression/message_compress.c',
596 'src/core/debug/trace.c',
597 'src/core/httpcli/format_request.c',
598 'src/core/httpcli/httpcli.c',
599 'src/core/httpcli/parser.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700600 'src/core/iomgr/closure.c',
601 'src/core/iomgr/endpoint.c',
602 'src/core/iomgr/endpoint_pair_posix.c',
603 'src/core/iomgr/endpoint_pair_windows.c',
604 'src/core/iomgr/exec_ctx.c',
David Garcia Quintas63e72a72015-10-12 22:07:32 -0700605 'src/core/iomgr/executor.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700606 'src/core/iomgr/fd_posix.c',
607 'src/core/iomgr/iocp_windows.c',
608 'src/core/iomgr/iomgr.c',
609 'src/core/iomgr/iomgr_posix.c',
610 'src/core/iomgr/iomgr_windows.c',
611 'src/core/iomgr/pollset_multipoller_with_epoll.c',
612 'src/core/iomgr/pollset_multipoller_with_poll_posix.c',
613 'src/core/iomgr/pollset_posix.c',
614 'src/core/iomgr/pollset_set_posix.c',
615 'src/core/iomgr/pollset_set_windows.c',
616 'src/core/iomgr/pollset_windows.c',
617 'src/core/iomgr/resolve_address_posix.c',
618 'src/core/iomgr/resolve_address_windows.c',
619 'src/core/iomgr/sockaddr_utils.c',
620 'src/core/iomgr/socket_utils_common_posix.c',
621 'src/core/iomgr/socket_utils_linux.c',
622 'src/core/iomgr/socket_utils_posix.c',
623 'src/core/iomgr/socket_windows.c',
624 'src/core/iomgr/tcp_client_posix.c',
625 'src/core/iomgr/tcp_client_windows.c',
626 'src/core/iomgr/tcp_posix.c',
627 'src/core/iomgr/tcp_server_posix.c',
628 'src/core/iomgr/tcp_server_windows.c',
629 'src/core/iomgr/tcp_windows.c',
630 'src/core/iomgr/time_averaged_stats.c',
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700631 'src/core/iomgr/timer.c',
632 'src/core/iomgr/timer_heap.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700633 'src/core/iomgr/udp_server.c',
634 'src/core/iomgr/wakeup_fd_eventfd.c',
635 'src/core/iomgr/wakeup_fd_nospecial.c',
636 'src/core/iomgr/wakeup_fd_pipe.c',
637 'src/core/iomgr/wakeup_fd_posix.c',
638 'src/core/iomgr/workqueue_posix.c',
639 'src/core/iomgr/workqueue_windows.c',
640 'src/core/json/json.c',
641 'src/core/json/json_reader.c',
642 'src/core/json/json_string.c',
643 'src/core/json/json_writer.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700644 'src/core/surface/api_trace.c',
645 'src/core/surface/byte_buffer.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700646 'src/core/surface/byte_buffer_reader.c',
647 'src/core/surface/call.c',
648 'src/core/surface/call_details.c',
649 'src/core/surface/call_log_batch.c',
650 'src/core/surface/channel.c',
651 'src/core/surface/channel_connectivity.c',
652 'src/core/surface/channel_create.c',
Craig Tiller26dab312015-12-07 14:43:47 -0800653 'src/core/surface/channel_ping.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700654 'src/core/surface/completion_queue.c',
655 'src/core/surface/event_string.c',
656 'src/core/surface/init.c',
657 'src/core/surface/lame_client.c',
658 'src/core/surface/metadata_array.c',
659 'src/core/surface/server.c',
660 'src/core/surface/server_chttp2.c',
661 'src/core/surface/server_create.c',
murgatroid99c3910ca2016-01-06 13:14:23 -0800662 'src/core/surface/validate_metadata.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700663 'src/core/surface/version.c',
Craig Tillerca1593a2015-11-02 14:08:33 -0800664 'src/core/transport/byte_stream.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700665 'src/core/transport/chttp2/alpn.c',
666 'src/core/transport/chttp2/bin_encoder.c',
667 'src/core/transport/chttp2/frame_data.c',
668 'src/core/transport/chttp2/frame_goaway.c',
669 'src/core/transport/chttp2/frame_ping.c',
670 'src/core/transport/chttp2/frame_rst_stream.c',
671 'src/core/transport/chttp2/frame_settings.c',
672 'src/core/transport/chttp2/frame_window_update.c',
Craig Tillerca1593a2015-11-02 14:08:33 -0800673 'src/core/transport/chttp2/hpack_encoder.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700674 'src/core/transport/chttp2/hpack_parser.c',
675 'src/core/transport/chttp2/hpack_table.c',
676 'src/core/transport/chttp2/huffsyms.c',
677 'src/core/transport/chttp2/incoming_metadata.c',
678 'src/core/transport/chttp2/parsing.c',
679 'src/core/transport/chttp2/status_conversion.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700680 'src/core/transport/chttp2/stream_lists.c',
681 'src/core/transport/chttp2/stream_map.c',
682 'src/core/transport/chttp2/timeout_encoding.c',
683 'src/core/transport/chttp2/varint.c',
684 'src/core/transport/chttp2/writing.c',
685 'src/core/transport/chttp2_transport.c',
686 'src/core/transport/connectivity_state.c',
687 'src/core/transport/metadata.c',
Craig Tillerca1593a2015-11-02 14:08:33 -0800688 'src/core/transport/metadata_batch.c',
Craig Tiller2e7687c2015-11-18 14:56:46 -0800689 'src/core/transport/static_metadata.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700690 'src/core/transport/transport.c',
691 'src/core/transport/transport_op_string.c',
692 'src/core/census/context.c',
693 'src/core/census/initialize.c',
694 'src/core/census/operation.c',
Alistair Veitchbb30d252016-01-12 17:36:05 -0800695 'src/core/census/tag_set.c',
murgatroid99fd994f12015-10-09 14:02:28 -0700696 'src/core/census/tracing.c',
697 ],
murgatroid996ffdb942015-10-22 16:10:05 -0700698 "conditions": [
699 ['OS == "mac"', {
700 'xcode_settings': {
murgatroid9922c448b2015-10-23 10:25:30 -0700701 'MACOSX_DEPLOYMENT_TARGET': '10.9'
murgatroid996ffdb942015-10-22 16:10:05 -0700702 }
703 }]
murgatroid995c56c922016-01-25 13:32:52 -0800704 ]
murgatroid99fd994f12015-10-09 14:02:28 -0700705 },
murgatroid992af89e42015-10-01 11:54:00 -0700706 {
707 'include_dirs': [
708 "<!(node -e \"require('nan')\")"
709 ],
710 'cflags': [
murgatroid993abed312016-01-07 17:16:46 -0800711 '-std=c++11',
murgatroid992af89e42015-10-01 11:54:00 -0700712 '-Wall',
713 '-pthread',
714 '-g',
715 '-zdefs',
716 '-Werror',
717 '-Wno-error=deprecated-declarations'
718 ],
719 'ldflags': [
720 '-g'
721 ],
722 "conditions": [
murgatroid995c56c922016-01-25 13:32:52 -0800723 ['OS=="mac"', {
murgatroid992af89e42015-10-01 11:54:00 -0700724 'xcode_settings': {
725 'MACOSX_DEPLOYMENT_TARGET': '10.9',
726 'OTHER_CFLAGS': [
murgatroid992af89e42015-10-01 11:54:00 -0700727 '-stdlib=libc++'
728 ]
729 }
murgatroid995c56c922016-01-25 13:32:52 -0800730 }],
731 ['OS=="win"', {
732 'dependencies': [
733 "boringssl",
734 "z",
735 ]
murgatroid992af89e42015-10-01 11:54:00 -0700736 }]
737 ],
738 "target_name": "grpc_node",
739 "sources": [
740 "src/node/ext/byte_buffer.cc",
741 "src/node/ext/call.cc",
murgatroid9947f519e2015-10-07 12:34:24 -0700742 "src/node/ext/call_credentials.cc",
murgatroid992af89e42015-10-01 11:54:00 -0700743 "src/node/ext/channel.cc",
murgatroid9947f519e2015-10-07 12:34:24 -0700744 "src/node/ext/channel_credentials.cc",
murgatroid992af89e42015-10-01 11:54:00 -0700745 "src/node/ext/completion_queue_async_worker.cc",
murgatroid992af89e42015-10-01 11:54:00 -0700746 "src/node/ext/node_grpc.cc",
747 "src/node/ext/server.cc",
748 "src/node/ext/server_credentials.cc",
murgatroid99879bc4f2015-11-05 10:35:04 -0800749 "src/node/ext/timeval.cc",
murgatroid992af89e42015-10-01 11:54:00 -0700750 ],
751 "dependencies": [
murgatroid99879bc4f2015-11-05 10:35:04 -0800752 "grpc",
753 "gpr",
murgatroid992af89e42015-10-01 11:54:00 -0700754 ]
murgatroid99879bc4f2015-11-05 10:35:04 -0800755 },
murgatroid99e190f352016-01-20 13:52:08 -0800756 {
757 "target_name": "action_after_build",
758 "type": "none",
759 "dependencies": [ "<(module_name)" ],
760 "copies": [
761 {
762 "files": [ "<(PRODUCT_DIR)/<(module_name).node"],
763 "destination": "<(module_path)"
764 }
765 ]
766 }
murgatroid992af89e42015-10-01 11:54:00 -0700767 ]
768}