Fix nullptr crash in OnEmbed
[chromium-blink-merge.git] / net / net_common.gypi
blob62b471c680d6786012bc24e47880c5eb55e97e94
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
6   # This target is included in both 'net' and 'net_small'.
7   'type': '<(component)',
8   'variables': { 'enable_wexit_time_destructors': 1, },
9   'dependencies': [
10     '../base/base.gyp:base',
11     '../base/base.gyp:base_prefs',
12     '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
13     '../crypto/crypto.gyp:crypto',
14     '../sdch/sdch.gyp:sdch',
15     '../third_party/protobuf/protobuf.gyp:protobuf_lite',
16     '../third_party/zlib/zlib.gyp:zlib',
17     'net_derived_sources',
18     'net_quic_proto',
19     'net_resources',
20   ],
21   'sources': [
22     '<@(net_nacl_common_sources)',
23     '<@(net_non_nacl_sources)',
24   ],
25   'defines': [
26     'NET_IMPLEMENTATION',
27   ],
28   'export_dependent_settings': [
29     '../base/base.gyp:base',
30   ],
31   'conditions': [
32     ['chromeos==1', {
33       'sources!': [
34          'base/network_change_notifier_linux.cc',
35          'base/network_change_notifier_linux.h',
36          'base/network_change_notifier_netlink_linux.cc',
37          'base/network_change_notifier_netlink_linux.h',
38          'proxy/proxy_config_service_linux.cc',
39          'proxy/proxy_config_service_linux.h',
40       ],
41     }],
42     ['use_kerberos==1', {
43       'defines': [
44         'USE_KERBEROS',
45       ],
46       'conditions': [
47         ['OS=="openbsd"', {
48           'include_dirs': [
49             '/usr/include/kerberosV'
50           ],
51         }],
52         ['linux_link_kerberos==1', {
53           'link_settings': {
54             'ldflags': [
55               '<!@(krb5-config --libs gssapi)',
56             ],
57           },
58         }, { # linux_link_kerberos==0
59           'defines': [
60             'DLOPEN_KERBEROS',
61           ],
62         }],
63       ],
64     }, { # use_kerberos == 0
65       'sources!': [
66         'http/http_auth_gssapi_posix.cc',
67         'http/http_auth_gssapi_posix.h',
68         'http/http_auth_handler_negotiate.cc',
69         'http/http_auth_handler_negotiate.h',
70       ],
71     }],
72     ['posix_avoid_mmap==1', {
73       'defines': [
74         'POSIX_AVOID_MMAP',
75       ],
76       'direct_dependent_settings': {
77         'defines': [
78           'POSIX_AVOID_MMAP',
79         ],
80       },
81       'sources!': [
82         'disk_cache/blockfile/mapped_file_posix.cc',
83       ],
84     }, { # else
85       'sources!': [
86         'disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc',
87       ],
88     }],
89     ['disable_file_support==1', {
90       # TODO(mmenke):  Should probably get rid of the dependency on
91       # net_resources in this case (It's used in net_util, to format
92       # directory listings.  Also used outside of net/).
93       'sources!': [
94         'base/directory_lister.cc',
95         'base/directory_lister.h',
96         'url_request/file_protocol_handler.cc',
97         'url_request/file_protocol_handler.h',
98         'url_request/url_request_file_dir_job.cc',
99         'url_request/url_request_file_dir_job.h',
100         'url_request/url_request_file_job.cc',
101         'url_request/url_request_file_job.h',
102       ],
103     }],
104     ['disable_ftp_support==1', {
105       'sources/': [
106         ['exclude', '^ftp/'],
107       ],
108       'sources!': [
109         'url_request/ftp_protocol_handler.cc',
110         'url_request/ftp_protocol_handler.h',
111         'url_request/url_request_ftp_job.cc',
112         'url_request/url_request_ftp_job.h',
113       ],
114     }],
115     ['enable_built_in_dns==1', {
116       'defines': [
117         'ENABLE_BUILT_IN_DNS',
118       ]
119     }, { # else
120       'sources!': [
121         'dns/address_sorter_posix.cc',
122         'dns/address_sorter_posix.h',
123         'dns/dns_client.cc',
124       ],
125     }],
126     ['use_openssl==1', {
127         'sources!': [
128           'base/nss_memio.c',
129           'base/nss_memio.h',
130           'cert/ct_log_verifier_nss.cc',
131           'cert/ct_objects_extractor_nss.cc',
132           'cert/jwk_serializer_nss.cc',
133           'cert/scoped_nss_types.h',
134           'cert/sha256_legacy_support_nss_win.cc',
135           'cert/x509_util_nss.cc',
136           'quic/crypto/aead_base_decrypter_nss.cc',
137           'quic/crypto/aead_base_encrypter_nss.cc',
138           'quic/crypto/aes_128_gcm_12_decrypter_nss.cc',
139           'quic/crypto/aes_128_gcm_12_encrypter_nss.cc',
140           'quic/crypto/chacha20_poly1305_decrypter_nss.cc',
141           'quic/crypto/chacha20_poly1305_encrypter_nss.cc',
142           'quic/crypto/channel_id_nss.cc',
143           'quic/crypto/p256_key_exchange_nss.cc',
144           'socket/nss_ssl_util.cc',
145           'socket/nss_ssl_util.h',
146           'socket/ssl_client_socket_nss.cc',
147           'socket/ssl_client_socket_nss.h',
148           'socket/ssl_server_socket_nss.cc',
149           'socket/ssl_server_socket_nss.h',
150         ],
151         'dependencies': [
152           '../third_party/boringssl/boringssl.gyp:boringssl',
153         ],
154       },
155       {  # else !use_openssl: remove the unneeded files and depend on NSS.
156         'sources!': [
157           'cert/ct_log_verifier_openssl.cc',
158           'cert/ct_objects_extractor_openssl.cc',
159           'cert/jwk_serializer_openssl.cc',
160           'cert/sha256_legacy_support_openssl_win.cc',
161           'cert/x509_util_openssl.cc',
162           'cert/x509_util_openssl.h',
163           'quic/crypto/aead_base_decrypter_openssl.cc',
164           'quic/crypto/aead_base_encrypter_openssl.cc',
165           'quic/crypto/aes_128_gcm_12_decrypter_openssl.cc',
166           'quic/crypto/aes_128_gcm_12_encrypter_openssl.cc',
167           'quic/crypto/chacha20_poly1305_decrypter_openssl.cc',
168           'quic/crypto/chacha20_poly1305_encrypter_openssl.cc',
169           'quic/crypto/channel_id_openssl.cc',
170           'quic/crypto/p256_key_exchange_openssl.cc',
171           'quic/crypto/scoped_evp_aead_ctx.cc',
172           'quic/crypto/scoped_evp_aead_ctx.h',
173           'socket/ssl_client_socket_openssl.cc',
174           'socket/ssl_client_socket_openssl.h',
175           'socket/ssl_server_socket_openssl.cc',
176           'socket/ssl_server_socket_openssl.h',
177           'ssl/openssl_ssl_util.cc',
178           'ssl/openssl_ssl_util.h',
179           'ssl/ssl_client_session_cache_openssl.cc',
180           'ssl/ssl_client_session_cache_openssl.h',
181           'ssl/ssl_platform_key.h',
182           'ssl/ssl_platform_key_nss.cc',
183           'ssl/threaded_ssl_private_key.cc',
184           'ssl/threaded_ssl_private_key.h',
185         ],
186       },
187     ],
188     [ 'use_nss_certs == 1 or OS == "ios" or use_openssl == 0', {
189         'conditions': [
190           # Pull in the bundled or system NSS as appropriate.
191           [ 'desktop_linux == 1 or chromeos == 1', {
192             'dependencies': [
193               '../build/linux/system.gyp:ssl',
194             ],
195           }, {
196             'dependencies': [
197               '../third_party/nss/nss.gyp:nspr',
198               '../third_party/nss/nss.gyp:nss',
199               'third_party/nss/ssl.gyp:libssl',
200             ],
201           }]
202         ],
203       }, {
204         'sources!': [
205           'cert/x509_util_nss.h',
206         ],
207       },
208     ],
209     [ 'use_openssl_certs == 0', {
210         'sources!': [
211           'base/crypto_module_openssl.cc',
212           'base/keygen_handler_openssl.cc',
213           'base/openssl_private_key_store.h',
214           'base/openssl_private_key_store_android.cc',
215           'base/openssl_private_key_store_memory.cc',
216           'cert/cert_database_openssl.cc',
217           'cert/cert_verify_proc_openssl.cc',
218           'cert/cert_verify_proc_openssl.h',
219           'cert/test_root_certs_openssl.cc',
220           'cert/x509_certificate_openssl.cc',
221           'ssl/openssl_client_key_store.cc',
222           'ssl/openssl_client_key_store.h',
223         ],
224     }, {
225         'sources!': [
226           # TODO(davidben): Remove these exclusions when use_openssl_certs
227           # builds also use the SSLPrivateKey machinery.
228           'ssl/threaded_ssl_private_key.cc',
229           'ssl/threaded_ssl_private_key.h',
230         ],
231     }],
232     [ 'use_glib == 1', {
233         'dependencies': [
234           '../build/linux/system.gyp:gconf',
235           '../build/linux/system.gyp:gio',
236         ],
237     }],
238     [ 'desktop_linux == 1 or chromeos == 1', {
239         'conditions': [
240           ['os_bsd==1', {
241             'sources!': [
242               'base/network_change_notifier_linux.cc',
243               'base/network_change_notifier_netlink_linux.cc',
244               'proxy/proxy_config_service_linux.cc',
245             ],
246           },{
247             'dependencies': [
248               '../build/linux/system.gyp:libresolv',
249             ],
250           }],
251           ['OS=="solaris"', {
252             'link_settings': {
253               'ldflags': [
254                 '-R/usr/lib/mps',
255               ],
256             },
257           }],
258         ],
259       },
260     ],
261     [ 'use_nss_certs != 1', {
262         'sources!': [
263           'base/crypto_module_nss.cc',
264           'base/keygen_handler_nss.cc',
265           'cert/cert_database_nss.cc',
266           'cert/cert_verify_proc_nss.cc',
267           'cert/cert_verify_proc_nss.h',
268           'cert/nss_cert_database.cc',
269           'cert/nss_cert_database.h',
270           'cert/nss_cert_database_chromeos.cc',
271           'cert/nss_cert_database_chromeos.h',
272           'cert/nss_profile_filter_chromeos.cc',
273           'cert/nss_profile_filter_chromeos.h',
274           'cert/test_root_certs_nss.cc',
275           'cert/x509_certificate_nss.cc',
276           'cert/x509_util_nss_certs.cc',
277           'cert_net/nss_ocsp.cc',
278           'cert_net/nss_ocsp.h',
279           'ssl/client_cert_store_nss.cc',
280           'ssl/client_cert_store_nss.h',
281           'ssl/ssl_platform_key_nss.cc',
282           'third_party/mozilla_security_manager/nsKeygenHandler.cpp',
283           'third_party/mozilla_security_manager/nsKeygenHandler.h',
284           'third_party/mozilla_security_manager/nsNSSCertificateDB.cpp',
285           'third_party/mozilla_security_manager/nsNSSCertificateDB.h',
286           'third_party/mozilla_security_manager/nsPKCS12Blob.cpp',
287           'third_party/mozilla_security_manager/nsPKCS12Blob.h',
288         ],
289       },
290     ],
291     # client_cert_store_nss.c requires NSS_CmpCertChainWCANames from NSS's
292     # libssl, but our bundled copy is not built in OpenSSL ports. Pull that
293     # file in directly.
294     [ 'use_nss_certs == 1 and use_openssl == 1', {
295         'sources': [
296           'third_party/nss/ssl/cmpcert.c',
297         ],
298     }],
299     [ 'enable_websockets != 1', {
300         'sources/': [
301           ['exclude', '^websockets/'],
302         ],
303     }],
304     [ 'enable_mdns != 1', {
305         'sources!' : [
306           'dns/mdns_cache.cc',
307           'dns/mdns_cache.h',
308           'dns/mdns_client.cc',
309           'dns/mdns_client.h',
310           'dns/mdns_client_impl.cc',
311           'dns/mdns_client_impl.h',
312           'dns/record_parsed.cc',
313           'dns/record_parsed.h',
314           'dns/record_rdata.cc',
315           'dns/record_rdata.h',
316         ]
317     }],
318     [ 'OS == "win"', {
319         'sources!': [
320           'http/http_auth_handler_ntlm_portable.cc',
321           'socket/socket_libevent.cc',
322           'socket/socket_libevent.h',
323           'socket/tcp_socket_libevent.cc',
324           'socket/tcp_socket_libevent.h',
325           'udp/udp_socket_libevent.cc',
326           'udp/udp_socket_libevent.h',
327         ],
328          # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
329         'msvs_disabled_warnings': [4267, ],
330       }, { # else: OS != "win"
331         'sources!': [
332           'base/winsock_init.cc',
333           'base/winsock_init.h',
334           'base/winsock_util.cc',
335           'base/winsock_util.h',
336           'proxy/proxy_resolver_winhttp.cc',
337           'proxy/proxy_resolver_winhttp.h',
338         ],
339       },
340     ],
341     [ 'OS == "mac"', {
342         'link_settings': {
343           'libraries': [
344             '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
345             '$(SDKROOT)/System/Library/Frameworks/Security.framework',
346             '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framework',
347             '$(SDKROOT)/usr/lib/libresolv.dylib',
348           ]
349         },
350       },
351     ],
352     [ 'OS == "ios"', {
353         'sources!': [
354           'disk_cache/blockfile/file_posix.cc',
355         ],
356         'link_settings': {
357           'libraries': [
358             '$(SDKROOT)/System/Library/Frameworks/CFNetwork.framework',
359             '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework',
360             '$(SDKROOT)/System/Library/Frameworks/Security.framework',
361             '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framework',
362           ],
363           'xcode_settings': {
364             'OTHER_LDFLAGS': [
365               '-lresolv',
366             ],
367           },
368         },
369       },
370     ],
371     [ 'OS == "ios" or OS == "mac"', {
372         'sources': [
373           '<@(net_base_mac_ios_sources)',
374         ],
375       },
376     ],
377     ['OS=="android" and _toolset=="target"', {
378       'dependencies': [
379          'net_java',
380       ],
381     }],
382     [ 'OS == "android"', {
383         'dependencies': [
384           'net_jni_headers',
385         ],
386         'sources!': [
387           'base/openssl_private_key_store_memory.cc',
388           'cert/cert_database_openssl.cc',
389           'cert/cert_verify_proc_openssl.cc',
390           'cert/test_root_certs_openssl.cc',
391           'http/http_auth_gssapi_posix.cc',
392           'http/http_auth_gssapi_posix.h',
393         ],
394       },
395     ],
396   ],
397   'target_conditions': [
398     # These source files are excluded by default platform rules, but they
399     # are needed in specific cases on other platforms. Re-including them can
400     # only be done in target_conditions as it is evaluated after the
401     # platform rules.
402     ['OS == "android"', {
403       'sources/': [
404         ['include', '^base/platform_mime_util_linux\\.cc$'],
405         ['include', '^base/address_tracker_linux\\.cc$'],
406         ['include', '^base/address_tracker_linux\\.h$'],
407         ['include', '^base/network_interfaces_linux\\.cc$'],
408         ['include', '^base/network_interfaces_linux\\.h$'],
409       ],
410     }],
411     ['OS == "ios"', {
412       'sources/': [
413         ['include', '^base/mac/url_conversions\\.h$'],
414         ['include', '^base/mac/url_conversions\\.mm$'],
415         ['include', '^base/network_change_notifier_mac\\.cc$'],
416         ['include', '^base/network_config_watcher_mac\\.cc$'],
417         ['include', '^base/network_interfaces_mac\\.cc$'],
418         ['include', '^base/network_interfaces_mac\\.h$'],
419         ['include', '^base/platform_mime_util_mac\\.mm$'],
420         # The iOS implementation only partially uses NSS and thus does not
421         # defines |use_nss_certs|. In particular the |USE_NSS_CERTS|
422         # preprocessor definition is not used. The following files are needed
423         # though:
424         ['include', '^cert/cert_verify_proc_nss\\.cc$'],
425         ['include', '^cert/cert_verify_proc_nss\\.h$'],
426         ['include', '^cert/test_root_certs_nss\\.cc$'],
427         ['include', '^cert/x509_util_nss_certs\\.cc$'],
428         ['include', '^cert_net/nss_ocsp\\.cc$'],
429         ['include', '^cert_net/nss_ocsp\\.h$'],
430         ['include', '^proxy/proxy_resolver_mac\\.cc$'],
431         ['include', '^proxy/proxy_server_mac\\.cc$'],
432       ],
433     }],
434   ],