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

Side by Side Diff: chrome/common/net/BUILD.gn

Issue 1122613002: Make the Windows multi_dll build work in GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@buildflags
Patch Set: chromeos and android Created 5 years, 7 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 | « chrome/common/extensions/api/BUILD.gn ('k') | content/public/child/BUILD.gn » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 6
7 # GYP version: chrome/chrome_common.gypi:common_net 7 # GYP version: chrome/chrome_common.gypi:common_net
8 static_library("net") { 8 static_library("net") {
9 sources = [ 9 sources = [
10 "net_resource_provider.cc", 10 "net_resource_provider.cc",
11 "net_resource_provider.h", 11 "net_resource_provider.h",
12 "url_util.cc", 12 "url_util.cc",
13 "url_util.h", 13 "url_util.h",
14 "x509_certificate_model.cc", 14 "x509_certificate_model.cc",
15 "x509_certificate_model.h", 15 "x509_certificate_model.h",
16 "x509_certificate_model_nss.cc", 16 "x509_certificate_model_nss.cc",
17 "x509_certificate_model_openssl.cc", 17 "x509_certificate_model_openssl.cc",
18 ] 18 ]
19 19
20 deps = [ 20 deps = [
21 "//base", 21 "//base",
22 "//chrome:resources", 22 "//chrome:resources",
23 "//chrome:strings", 23 "//chrome:strings",
24 "//components/error_page/common", 24 "//components/error_page/common",
25 "//components/network_hints/common",
25 "//crypto", 26 "//crypto",
26 "//net", 27 "//net",
27 "//net:net_resources", 28 "//net:net_resources",
28 "//third_party/icu", 29 "//third_party/icu",
29 "//ui/base/", 30 "//ui/base/",
30 ] 31 ]
31 32
32 if (is_ios) { 33 if (is_ios) {
33 sources -= [ "net_resource_provider.cc" ] 34 sources -= [ "net_resource_provider.cc" ]
34 } else { 35 } else {
(...skipping 11 matching lines...) Expand all
46 } 47 }
47 48
48 if (use_nss_certs) { 49 if (use_nss_certs) {
49 deps += [ "//crypto:platform" ] 50 deps += [ "//crypto:platform" ]
50 } else { 51 } else {
51 sources -= [ "x509_certificate_model_nss.cc" ] 52 sources -= [ "x509_certificate_model_nss.cc" ]
52 } 53 }
53 54
54 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 55 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
55 } 56 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/BUILD.gn ('k') | content/public/child/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698