Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: net/net_common.gypi

Issue 1810153002: Adding iOS OpenSSL Implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing more nits. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« net/BUILD.gn ('K') | « net/net.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 # This target is included in both 'net' and 'net_small'. 6 # This target is included in both 'net' and 'net_small'.
7 'type': '<(component)', 7 'type': '<(component)',
8 'variables': { 'enable_wexit_time_destructors': 1, }, 8 'variables': { 'enable_wexit_time_destructors': 1, },
9 'dependencies': [ 9 'dependencies': [
10 '../base/base.gyp:base', 10 '../base/base.gyp:base',
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 'sources': [ 302 'sources': [
303 'third_party/nss/ssl/cmpcert.c', 303 'third_party/nss/ssl/cmpcert.c',
304 ], 304 ],
305 }], 305 }],
306 [ 'OS == "ios" and use_nss_verifier == 0', { 306 [ 'OS == "ios" and use_nss_verifier == 0', {
307 'sources!': [ 307 'sources!': [
308 'cert/x509_util_ios.cc', 308 'cert/x509_util_ios.cc',
309 'cert/x509_util_ios.h', 309 'cert/x509_util_ios.h',
310 ], 310 ],
311 }], 311 }],
312 [ 'OS == "ios" and use_nss_verifier == 1', {
313 'sources!': [
314 'cert/cert_verify_proc_ios.cc',
315 'cert/cert_verify_proc_ios.h',
316 'cert/x509_certificate_openssl_ios.cc',
317 ],
318 }],
312 [ 'enable_websockets == 1', { 319 [ 'enable_websockets == 1', {
313 'sources': ['<@(net_websockets_sources)'] 320 'sources': ['<@(net_websockets_sources)']
314 }], 321 }],
315 [ 'enable_mdns != 1', { 322 [ 'enable_mdns != 1', {
316 'sources!' : [ 323 'sources!' : [
317 'dns/mdns_cache.cc', 324 'dns/mdns_cache.cc',
318 'dns/mdns_cache.h', 325 'dns/mdns_cache.h',
319 'dns/mdns_client.cc', 326 'dns/mdns_client.cc',
320 'dns/mdns_client.h', 327 'dns/mdns_client.h',
321 'dns/mdns_client_impl.cc', 328 'dns/mdns_client_impl.cc',
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 ['include', '^base/mac/url_conversions\\.mm$'], 426 ['include', '^base/mac/url_conversions\\.mm$'],
420 ['include', '^base/network_change_notifier_mac\\.cc$'], 427 ['include', '^base/network_change_notifier_mac\\.cc$'],
421 ['include', '^base/network_config_watcher_mac\\.cc$'], 428 ['include', '^base/network_config_watcher_mac\\.cc$'],
422 ['include', '^base/network_interfaces_mac\\.cc$'], 429 ['include', '^base/network_interfaces_mac\\.cc$'],
423 ['include', '^base/network_interfaces_mac\\.h$'], 430 ['include', '^base/network_interfaces_mac\\.h$'],
424 ['include', '^base/platform_mime_util_mac\\.mm$'], 431 ['include', '^base/platform_mime_util_mac\\.mm$'],
425 ['include', '^proxy/proxy_resolver_mac\\.cc$'], 432 ['include', '^proxy/proxy_resolver_mac\\.cc$'],
426 ['include', '^proxy/proxy_server_mac\\.cc$'], 433 ['include', '^proxy/proxy_server_mac\\.cc$'],
427 ], 434 ],
428 }], 435 }],
436 ['OS == "ios" and <(use_nss_verifier) == 0', {
437 'sources/': [
438 ['include', '^cert/test_root_certs_mac\\.cc$'],
439 ],
440 }],
429 ], 441 ],
430 } 442 }
OLDNEW
« net/BUILD.gn ('K') | « net/net.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698