| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 'sources': ['<@(net_websockets_sources)'] | 216 'sources': ['<@(net_websockets_sources)'] |
| 217 }], | 217 }], |
| 218 [ 'enable_mdns != 1', { | 218 [ 'enable_mdns != 1', { |
| 219 'sources!' : [ | 219 'sources!' : [ |
| 220 'dns/mdns_cache.cc', | 220 'dns/mdns_cache.cc', |
| 221 'dns/mdns_cache.h', | 221 'dns/mdns_cache.h', |
| 222 'dns/mdns_client.cc', | 222 'dns/mdns_client.cc', |
| 223 'dns/mdns_client.h', | 223 'dns/mdns_client.h', |
| 224 'dns/mdns_client_impl.cc', | 224 'dns/mdns_client_impl.cc', |
| 225 'dns/mdns_client_impl.h', | 225 'dns/mdns_client_impl.h', |
| 226 'dns/record_parsed.cc', | |
| 227 'dns/record_parsed.h', | |
| 228 'dns/record_rdata.cc', | |
| 229 'dns/record_rdata.h', | |
| 230 ] | 226 ] |
| 231 }], | 227 }], |
| 232 [ 'OS == "win"', { | 228 [ 'OS == "win"', { |
| 233 'sources!': [ | 229 'sources!': [ |
| 234 'http/http_auth_handler_ntlm_portable.cc', | 230 'http/http_auth_handler_ntlm_portable.cc', |
| 235 ], | 231 ], |
| 236 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 232 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 237 'msvs_disabled_warnings': [4267, ], | 233 'msvs_disabled_warnings': [4267, ], |
| 238 'all_dependent_settings': { | 234 'all_dependent_settings': { |
| 239 'msvs_settings': { | 235 'msvs_settings': { |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 ['include', '^proxy/proxy_server_mac\\.cc$'], | 353 ['include', '^proxy/proxy_server_mac\\.cc$'], |
| 358 ], | 354 ], |
| 359 }], | 355 }], |
| 360 ['OS == "ios"', { | 356 ['OS == "ios"', { |
| 361 'sources/': [ | 357 'sources/': [ |
| 362 ['include', '^cert/test_root_certs_mac\\.cc$'], | 358 ['include', '^cert/test_root_certs_mac\\.cc$'], |
| 363 ], | 359 ], |
| 364 }], | 360 }], |
| 365 ], | 361 ], |
| 366 } | 362 } |
| OLD | NEW |