Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Side by Side Diff: net/BUILD.gn

Issue 1844793007: Remove "#pragma comment(lib" in net. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | net/base/keygen_handler_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | net/base/keygen_handler_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698