Adding instrumentation to locate the source of jankiness
[chromium-blink-merge.git] / chrome / common / net / BUILD.gn
blobbf87915565bd23de5a797ffba7166615b57ebed4
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     "predictor_common.h",
13     "url_util.cc",
14     "url_util.h",
15     "x509_certificate_model.cc",
16     "x509_certificate_model.h",
17     "x509_certificate_model_nss.cc",
18     "x509_certificate_model_openssl.cc",
19   ]
21   deps = [
22     "//base",
23     "//chrome:resources",
24     "//chrome:strings",
25     "//components/error_page/common",
26     "//crypto",
27     "//net",
28     "//net:net_resources",
29     "//third_party/icu",
30   ]
32   if (is_ios) {
33     sources -= [
34       "net_resource_provider.cc",
35       "x509_certificate_model.cc",
36     ]
37   } else {
38     deps += [ "//gpu/ipc" ]
39   }
41   if (is_win || is_mac || is_ios) {
42     sources -= [
43       "x509_certificate_model_nss.cc",
44       "x509_certificate_model_openssl.cc",
45     ]
46   } else if (use_openssl) {
47     sources -= [ "x509_certificate_model_nss.cc" ]
48   } else {
49     sources -= [ "x509_certificate_model_openssl.cc" ]
50   }
52   if (is_android) {
53     sources -= [
54       "x509_certificate_model.cc",
55       "x509_certificate_model_openssl.cc",
56     ]
57     deps += [ "//third_party/boringssl" ]
58   }
60   if (is_win) {
61     cflags = [ "/wd4267" ]
62   }