| 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_resource_provider.cc", | 10 "net_resource_provider.cc", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 } | 50 } |
| 51 | 51 |
| 52 if (is_android) { | 52 if (is_android) { |
| 53 sources -= [ | 53 sources -= [ |
| 54 "x509_certificate_model.cc", | 54 "x509_certificate_model.cc", |
| 55 "x509_certificate_model_openssl.cc", | 55 "x509_certificate_model_openssl.cc", |
| 56 ] | 56 ] |
| 57 deps += [ "//third_party/boringssl" ] | 57 deps += [ "//third_party/boringssl" ] |
| 58 } | 58 } |
| 59 | 59 |
| 60 if (is_win) { | 60 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 61 cflags = [ "/wd4267" ] | |
| 62 } | |
| 63 } | 61 } |
| OLD | NEW |