| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 "cert/nss_profile_filter_chromeos.cc", | 224 "cert/nss_profile_filter_chromeos.cc", |
| 225 "cert/nss_profile_filter_chromeos.h", | 225 "cert/nss_profile_filter_chromeos.h", |
| 226 ] | 226 ] |
| 227 } | 227 } |
| 228 sources -= [ | 228 sources -= [ |
| 229 "ssl/client_key_store.cc", | 229 "ssl/client_key_store.cc", |
| 230 "ssl/client_key_store.h", | 230 "ssl/client_key_store.h", |
| 231 "ssl/ssl_platform_key_nss.cc", | 231 "ssl/ssl_platform_key_nss.cc", |
| 232 ] | 232 ] |
| 233 } else { | 233 } else { |
| 234 # client_cert_store_nss.c requires NSS_CmpCertChainWCANames from NSS's | 234 sources += [ |
| 235 # libssl, but our bundled copy is not built in OpenSSL ports. Pull that | 235 "third_party/nss/ssl/cmpcert.cc", |
| 236 # file in directly. | 236 "third_party/nss/ssl/cmpcert.h", |
| 237 sources += [ "third_party/nss/ssl/cmpcert.c" ] | 237 ] |
| 238 } | 238 } |
| 239 | 239 |
| 240 if (!use_nss_certs) { | 240 if (!use_nss_certs) { |
| 241 # These files are part of the partial implementation of NSS for | 241 # These files are part of the partial implementation of NSS for |
| 242 # cert verification, so keep them in that case. | 242 # cert verification, so keep them in that case. |
| 243 sources -= [ | 243 sources -= [ |
| 244 "cert/cert_verify_proc_nss.cc", | 244 "cert/cert_verify_proc_nss.cc", |
| 245 "cert/cert_verify_proc_nss.h", | 245 "cert/cert_verify_proc_nss.h", |
| 246 "cert/test_root_certs_nss.cc", | 246 "cert/test_root_certs_nss.cc", |
| 247 "cert/x509_util_nss.cc", | 247 "cert/x509_util_nss.cc", |
| (...skipping 1754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2002 "url_request/url_request_fuzzer.cc", | 2002 "url_request/url_request_fuzzer.cc", |
| 2003 ] | 2003 ] |
| 2004 deps = [ | 2004 deps = [ |
| 2005 ":net_fuzzer_test_support", | 2005 ":net_fuzzer_test_support", |
| 2006 ":test_support", | 2006 ":test_support", |
| 2007 "//base", | 2007 "//base", |
| 2008 "//net", | 2008 "//net", |
| 2009 ] | 2009 ] |
| 2010 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2010 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
| 2011 } | 2011 } |
| OLD | NEW |