| 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 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 'dns/record_rdata.cc', | 332 'dns/record_rdata.cc', |
| 333 'dns/record_rdata.h', | 333 'dns/record_rdata.h', |
| 334 ] | 334 ] |
| 335 }], | 335 }], |
| 336 [ 'OS == "win"', { | 336 [ 'OS == "win"', { |
| 337 'sources!': [ | 337 'sources!': [ |
| 338 'http/http_auth_handler_ntlm_portable.cc', | 338 'http/http_auth_handler_ntlm_portable.cc', |
| 339 ], | 339 ], |
| 340 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 340 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 341 'msvs_disabled_warnings': [4267, ], | 341 'msvs_disabled_warnings': [4267, ], |
| 342 'all_dependent_settings': { |
| 343 'msvs_settings': { |
| 344 'VCLinkerTool': { |
| 345 'AdditionalDependencies': [ |
| 346 'crypt32.lib', |
| 347 'dhcpcsvc.lib', |
| 348 'iphlpapi.lib', |
| 349 'rpcrt4.lib', |
| 350 'secur32.lib', |
| 351 'urlmon.lib', |
| 352 'winhttp.lib', |
| 353 ], |
| 354 }, |
| 355 }, |
| 356 }, |
| 357 'msvs_settings': { |
| 358 'VCLinkerTool': { |
| 359 'AdditionalDependencies': [ |
| 360 'crypt32.lib', |
| 361 'dhcpcsvc.lib', |
| 362 'iphlpapi.lib', |
| 363 'rpcrt4.lib', |
| 364 'secur32.lib', |
| 365 'urlmon.lib', |
| 366 'winhttp.lib', |
| 367 ], |
| 368 }, |
| 369 }, |
| 342 }, { # else: OS != "win" | 370 }, { # else: OS != "win" |
| 343 'sources!': [ | 371 'sources!': [ |
| 344 'base/winsock_init.cc', | 372 'base/winsock_init.cc', |
| 345 'base/winsock_init.h', | 373 'base/winsock_init.h', |
| 346 'base/winsock_util.cc', | 374 'base/winsock_util.cc', |
| 347 'base/winsock_util.h', | 375 'base/winsock_util.h', |
| 348 'proxy/proxy_resolver_winhttp.cc', | 376 'proxy/proxy_resolver_winhttp.cc', |
| 349 'proxy/proxy_resolver_winhttp.h', | 377 'proxy/proxy_resolver_winhttp.h', |
| 350 ], | 378 ], |
| 351 }, | 379 }, |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 ['include', '^proxy/proxy_server_mac\\.cc$'], | 461 ['include', '^proxy/proxy_server_mac\\.cc$'], |
| 434 ], | 462 ], |
| 435 }], | 463 }], |
| 436 ['OS == "ios" and <(use_nss_verifier) == 0', { | 464 ['OS == "ios" and <(use_nss_verifier) == 0', { |
| 437 'sources/': [ | 465 'sources/': [ |
| 438 ['include', '^cert/test_root_certs_mac\\.cc$'], | 466 ['include', '^cert/test_root_certs_mac\\.cc$'], |
| 439 ], | 467 ], |
| 440 }], | 468 }], |
| 441 ], | 469 ], |
| 442 } | 470 } |
| OLD | NEW |