Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / common / net / BUILD.gn
blobf1a838521608a1e8d36a7de4a01b3182318ca9b4
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
3 # found in the LICENSE file.
5 import("//build/config/crypto.gni")
7 # GYP version: chrome/chrome_common.gypi:common_net
8 static_library("net") {
9   sources = [
10     "net_resource_provider.cc",
11     "net_resource_provider.h",
12     "url_util.cc",
13     "url_util.h",
14     "x509_certificate_model.cc",
15     "x509_certificate_model.h",
16     "x509_certificate_model_nss.cc",
17     "x509_certificate_model_openssl.cc",
18   ]
20   deps = [
21     "//base",
22     "//chrome:resources",
23     "//chrome:strings",
24     "//components/error_page/common",
25     "//components/network_hints/common",
26     "//crypto",
27     "//net",
28     "//net:net_resources",
29     "//third_party/icu",
30     "//ui/base/",
31   ]
33   if (is_ios) {
34     sources -= [ "net_resource_provider.cc" ]
35   } else {
36     deps += [ "//gpu/ipc" ]
37   }
39   if (is_android || is_ios) {
40     sources -= [ "x509_certificate_model.cc" ]
41   }
43   if (use_openssl_certs && !is_android) {
44     deps += [ "//third_party/boringssl" ]
45   } else {
46     sources -= [ "x509_certificate_model_openssl.cc" ]
47   }
49   if (use_nss_certs) {
50     deps += [ "//crypto:platform" ]
51   } else {
52     sources -= [ "x509_certificate_model_nss.cc" ]
53   }
55   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]