| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 if (is_ios) { | 437 if (is_ios) { |
| 438 libs = [ | 438 libs = [ |
| 439 "CFNetwork.framework", | 439 "CFNetwork.framework", |
| 440 "MobileCoreServices.framework", | 440 "MobileCoreServices.framework", |
| 441 "Security.framework", | 441 "Security.framework", |
| 442 "SystemConfiguration.framework", | 442 "SystemConfiguration.framework", |
| 443 "resolv", | 443 "resolv", |
| 444 ] | 444 ] |
| 445 } | 445 } |
| 446 | 446 |
| 447 if (is_win) { |
| 448 libs = [ |
| 449 "crypt32.lib", |
| 450 "dhcpcsvc.lib", |
| 451 "iphlpapi.lib", |
| 452 "rpcrt4.lib", |
| 453 "secur32.lib", |
| 454 "urlmon.lib", |
| 455 "winhttp.lib", |
| 456 ] |
| 457 } |
| 458 |
| 447 if (!is_nacl) { | 459 if (!is_nacl) { |
| 448 if (!disable_file_support) { | 460 if (!disable_file_support) { |
| 449 sources += gypi_values.net_file_support_sources | 461 sources += gypi_values.net_file_support_sources |
| 450 } | 462 } |
| 451 | 463 |
| 452 if (!disable_ftp_support) { | 464 if (!disable_ftp_support) { |
| 453 sources += gypi_values.net_ftp_support_sources | 465 sources += gypi_values.net_ftp_support_sources |
| 454 } | 466 } |
| 455 | 467 |
| 456 if (enable_websockets) { | 468 if (enable_websockets) { |
| (...skipping 1512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1969 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { | 1981 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { |
| 1970 sources = [ | 1982 sources = [ |
| 1971 "quic/quic_crypto_framer_parse_message_fuzzer.cc", | 1983 "quic/quic_crypto_framer_parse_message_fuzzer.cc", |
| 1972 ] | 1984 ] |
| 1973 deps = [ | 1985 deps = [ |
| 1974 ":net_fuzzer_test_support", | 1986 ":net_fuzzer_test_support", |
| 1975 "//base", | 1987 "//base", |
| 1976 "//net", | 1988 "//net", |
| 1977 ] | 1989 ] |
| 1978 } | 1990 } |
| OLD | NEW |