| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 ], | 205 ], |
| 206 # client_cert_store_nss.c requires NSS_CmpCertChainWCANames from NSS's | 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 | 207 # libssl, but our bundled copy is not built in OpenSSL ports. Pull that |
| 208 # file in directly. | 208 # file in directly. |
| 209 [ 'use_nss_certs == 1', { | 209 [ 'use_nss_certs == 1', { |
| 210 'sources': [ | 210 'sources': [ |
| 211 'third_party/nss/ssl/cmpcert.c', | 211 'third_party/nss/ssl/cmpcert.c', |
| 212 ], | 212 ], |
| 213 }], | 213 }], |
| 214 [ 'enable_websockets == 1', { | 214 [ 'enable_websockets == 1', { |
| 215 'defines': ['ENABLE_WEBSOCKETS'], |
| 215 'sources': ['<@(net_websockets_sources)'] | 216 'sources': ['<@(net_websockets_sources)'] |
| 216 }], | 217 }], |
| 217 [ 'enable_mdns != 1', { | 218 [ 'enable_mdns != 1', { |
| 218 'sources!' : [ | 219 'sources!' : [ |
| 219 'dns/mdns_cache.cc', | 220 'dns/mdns_cache.cc', |
| 220 'dns/mdns_cache.h', | 221 'dns/mdns_cache.h', |
| 221 'dns/mdns_client.cc', | 222 'dns/mdns_client.cc', |
| 222 'dns/mdns_client.h', | 223 'dns/mdns_client.h', |
| 223 'dns/mdns_client_impl.cc', | 224 'dns/mdns_client_impl.cc', |
| 224 'dns/mdns_client_impl.h', | 225 'dns/mdns_client_impl.h', |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 ['include', '^proxy/proxy_server_mac\\.cc$'], | 357 ['include', '^proxy/proxy_server_mac\\.cc$'], |
| 357 ], | 358 ], |
| 358 }], | 359 }], |
| 359 ['OS == "ios"', { | 360 ['OS == "ios"', { |
| 360 'sources/': [ | 361 'sources/': [ |
| 361 ['include', '^cert/test_root_certs_mac\\.cc$'], | 362 ['include', '^cert/test_root_certs_mac\\.cc$'], |
| 362 ], | 363 ], |
| 363 }], | 364 }], |
| 364 ], | 365 ], |
| 365 } | 366 } |
| OLD | NEW |