| OLD | NEW |
| 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 by 'net' target. | 6 # This target is included by 'net' target. |
| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 'ssl/ssl_platform_key_nss.cc', | 196 'ssl/ssl_platform_key_nss.cc', |
| 197 'third_party/mozilla_security_manager/nsKeygenHandler.cpp', | 197 'third_party/mozilla_security_manager/nsKeygenHandler.cpp', |
| 198 'third_party/mozilla_security_manager/nsKeygenHandler.h', | 198 'third_party/mozilla_security_manager/nsKeygenHandler.h', |
| 199 'third_party/mozilla_security_manager/nsNSSCertificateDB.cpp', | 199 'third_party/mozilla_security_manager/nsNSSCertificateDB.cpp', |
| 200 'third_party/mozilla_security_manager/nsNSSCertificateDB.h', | 200 'third_party/mozilla_security_manager/nsNSSCertificateDB.h', |
| 201 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp', | 201 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp', |
| 202 'third_party/mozilla_security_manager/nsPKCS12Blob.h', | 202 'third_party/mozilla_security_manager/nsPKCS12Blob.h', |
| 203 ], | 203 ], |
| 204 }, | 204 }, |
| 205 ], | 205 ], |
| 206 # client_cert_store_nss.c requires NSS_CmpCertChainWCANames from NSS's | |
| 207 # libssl, but our bundled copy is not built in OpenSSL ports. Pull that | |
| 208 # file in directly. | |
| 209 [ 'use_nss_certs == 1', { | 206 [ 'use_nss_certs == 1', { |
| 210 'sources': [ | 207 'sources': [ |
| 211 'third_party/nss/ssl/cmpcert.c', | 208 'third_party/nss/ssl/cmpcert.cc', |
| 209 'third_party/nss/ssl/cmpcert.h', |
| 212 ], | 210 ], |
| 213 }], | 211 }], |
| 214 [ 'enable_websockets == 1', { | 212 [ 'enable_websockets == 1', { |
| 215 'defines': ['ENABLE_WEBSOCKETS'], | 213 'defines': ['ENABLE_WEBSOCKETS'], |
| 216 'sources': ['<@(net_websockets_sources)'] | 214 'sources': ['<@(net_websockets_sources)'] |
| 217 }], | 215 }], |
| 218 [ 'enable_mdns != 1', { | 216 [ 'enable_mdns != 1', { |
| 219 'sources!' : [ | 217 'sources!' : [ |
| 220 'dns/mdns_cache.cc', | 218 'dns/mdns_cache.cc', |
| 221 'dns/mdns_cache.h', | 219 'dns/mdns_cache.h', |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 ['include', '^proxy/proxy_server_mac\\.cc$'], | 351 ['include', '^proxy/proxy_server_mac\\.cc$'], |
| 354 ], | 352 ], |
| 355 }], | 353 }], |
| 356 ['OS == "ios"', { | 354 ['OS == "ios"', { |
| 357 'sources/': [ | 355 'sources/': [ |
| 358 ['include', '^cert/test_root_certs_mac\\.cc$'], | 356 ['include', '^cert/test_root_certs_mac\\.cc$'], |
| 359 ], | 357 ], |
| 360 }], | 358 }], |
| 361 ], | 359 ], |
| 362 } | 360 } |
| OLD | NEW |