| 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 | |
| 8 static_library("net") { | 7 static_library("net") { |
| 9 sources = [ | 8 sources = [ |
| 10 "net_resource_provider.cc", | 9 "net_resource_provider.cc", |
| 11 "net_resource_provider.h", | 10 "net_resource_provider.h", |
| 12 "x509_certificate_model.cc", | 11 "x509_certificate_model.cc", |
| 13 "x509_certificate_model.h", | 12 "x509_certificate_model.h", |
| 14 "x509_certificate_model_nss.cc", | 13 "x509_certificate_model_nss.cc", |
| 15 ] | 14 ] |
| 16 | 15 |
| 17 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 16 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| (...skipping 23 matching lines...) Expand all Loading... |
| 41 deps += [ | 40 deps += [ |
| 42 "//chrome/third_party/mozilla_security_manager", | 41 "//chrome/third_party/mozilla_security_manager", |
| 43 "//crypto:platform", | 42 "//crypto:platform", |
| 44 ] | 43 ] |
| 45 allow_circular_includes_from = | 44 allow_circular_includes_from = |
| 46 [ "//chrome/third_party/mozilla_security_manager" ] | 45 [ "//chrome/third_party/mozilla_security_manager" ] |
| 47 } else { | 46 } else { |
| 48 sources -= [ "x509_certificate_model_nss.cc" ] | 47 sources -= [ "x509_certificate_model_nss.cc" ] |
| 49 } | 48 } |
| 50 } | 49 } |
| OLD | NEW |