OLD | NEW |
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_error_info.cc", | 10 "net_error_info.cc", |
(...skipping 10 matching lines...) Expand all Loading... |
21 ] | 21 ] |
22 | 22 |
23 deps = [ | 23 deps = [ |
24 "//base", | 24 "//base", |
25 "//chrome:resources", | 25 "//chrome:resources", |
26 "//chrome:strings", | 26 "//chrome:strings", |
27 "//crypto", | 27 "//crypto", |
28 "//net", | 28 "//net", |
29 "//net:net_resources", | 29 "//net:net_resources", |
30 "//third_party/icu", | 30 "//third_party/icu", |
| 31 "//ui/base/", |
31 ] | 32 ] |
32 | 33 |
33 if (is_ios) { | 34 if (is_ios) { |
34 sources -= [ | 35 sources -= [ |
35 "net_resource_provider.cc", | 36 "net_resource_provider.cc", |
36 "x509_certificate_model.cc", | 37 "x509_certificate_model.cc", |
37 ] | 38 ] |
38 } else { | 39 } else { |
39 deps += [ "//gpu/ipc" ] | 40 deps += [ "//gpu/ipc" ] |
40 } | 41 } |
(...skipping 14 matching lines...) Expand all Loading... |
55 "x509_certificate_model.cc", | 56 "x509_certificate_model.cc", |
56 "x509_certificate_model_openssl.cc", | 57 "x509_certificate_model_openssl.cc", |
57 ] | 58 ] |
58 deps += [ "//third_party/boringssl" ] | 59 deps += [ "//third_party/boringssl" ] |
59 } | 60 } |
60 | 61 |
61 if (is_win) { | 62 if (is_win) { |
62 cflags = [ "/wd4267" ] | 63 cflags = [ "/wd4267" ] |
63 } | 64 } |
64 } | 65 } |
OLD | NEW |