Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(435)

Side by Side Diff: net/BUILD.gn

Issue 2724013002: net: remove CryptoModule class (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 "android/traffic_stats.h", 390 "android/traffic_stats.h",
391 "base/address_tracker_linux.cc", 391 "base/address_tracker_linux.cc",
392 "base/address_tracker_linux.h", 392 "base/address_tracker_linux.h",
393 "base/backoff_entry.cc", 393 "base/backoff_entry.cc",
394 "base/backoff_entry.h", 394 "base/backoff_entry.h",
395 "base/backoff_entry_serializer.cc", 395 "base/backoff_entry_serializer.cc",
396 "base/backoff_entry_serializer.h", 396 "base/backoff_entry_serializer.h",
397 "base/cache_type.h", 397 "base/cache_type.h",
398 "base/chunked_upload_data_stream.cc", 398 "base/chunked_upload_data_stream.cc",
399 "base/chunked_upload_data_stream.h", 399 "base/chunked_upload_data_stream.h",
400 "base/crypto_module.h",
401 "base/crypto_module_nss.cc",
402 "base/crypto_module_openssl.cc",
403 "base/data_url.cc", 400 "base/data_url.cc",
404 "base/data_url.h", 401 "base/data_url.h",
405 "base/elements_upload_data_stream.cc", 402 "base/elements_upload_data_stream.cc",
406 "base/elements_upload_data_stream.h", 403 "base/elements_upload_data_stream.h",
407 "base/expiring_cache.h", 404 "base/expiring_cache.h",
408 "base/file_stream.cc", 405 "base/file_stream.cc",
409 "base/file_stream.h", 406 "base/file_stream.h",
410 "base/file_stream_context.cc", 407 "base/file_stream_context.cc",
411 "base/file_stream_context.h", 408 "base/file_stream_context.h",
412 "base/file_stream_context_posix.cc", 409 "base/file_stream_context_posix.cc",
(...skipping 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after
1682 if (!enable_built_in_dns) { 1679 if (!enable_built_in_dns) {
1683 sources -= [ 1680 sources -= [
1684 "dns/address_sorter_posix.cc", 1681 "dns/address_sorter_posix.cc",
1685 "dns/address_sorter_posix.h", 1682 "dns/address_sorter_posix.h",
1686 "dns/dns_client.cc", 1683 "dns/dns_client.cc",
1687 ] 1684 ]
1688 } 1685 }
1689 1686
1690 if (!use_openssl_certs) { 1687 if (!use_openssl_certs) {
1691 sources -= [ 1688 sources -= [
1692 "base/crypto_module_openssl.cc",
1693 "cert/cert_database_openssl.cc", 1689 "cert/cert_database_openssl.cc",
1694 "cert/cert_verify_proc_openssl.cc", 1690 "cert/cert_verify_proc_openssl.cc",
1695 "cert/cert_verify_proc_openssl.h", 1691 "cert/cert_verify_proc_openssl.h",
1696 "cert/test_root_certs_openssl.cc", 1692 "cert/test_root_certs_openssl.cc",
1697 "cert/x509_certificate_openssl.cc", 1693 "cert/x509_certificate_openssl.cc",
1698 "ssl/openssl_client_key_store.cc", 1694 "ssl/openssl_client_key_store.cc",
1699 "ssl/openssl_client_key_store.h", 1695 "ssl/openssl_client_key_store.h",
1700 ] 1696 ]
1701 } else { 1697 } else {
1702 if (is_android) { 1698 if (is_android) {
(...skipping 12 matching lines...) Expand all
1715 "http/http_auth_gssapi_posix.h", 1711 "http/http_auth_gssapi_posix.h",
1716 ] 1712 ]
1717 } 1713 }
1718 1714
1719 if (use_gio) { 1715 if (use_gio) {
1720 deps += [ "//build/linux/libgio" ] 1716 deps += [ "//build/linux/libgio" ]
1721 } 1717 }
1722 1718
1723 if (!use_nss_certs) { 1719 if (!use_nss_certs) {
1724 sources -= [ 1720 sources -= [
1725 "base/crypto_module_nss.cc",
1726 "cert/cert_database_nss.cc", 1721 "cert/cert_database_nss.cc",
1727 "cert/internal/cert_issuer_source_nss.cc", 1722 "cert/internal/cert_issuer_source_nss.cc",
1728 "cert/internal/cert_issuer_source_nss.h", 1723 "cert/internal/cert_issuer_source_nss.h",
1729 "cert/internal/trust_store_nss.cc", 1724 "cert/internal/trust_store_nss.cc",
1730 "cert/internal/trust_store_nss.h", 1725 "cert/internal/trust_store_nss.h",
1731 "cert/nss_cert_database.cc", 1726 "cert/nss_cert_database.cc",
1732 "cert/nss_cert_database.h", 1727 "cert/nss_cert_database.h",
1733 "cert/x509_certificate_nss.cc", 1728 "cert/x509_certificate_nss.cc",
1734 "ssl/client_cert_store_nss.cc", 1729 "ssl/client_cert_store_nss.cc",
1735 "ssl/client_cert_store_nss.h", 1730 "ssl/client_cert_store_nss.h",
(...skipping 3966 matching lines...) Expand 10 before | Expand all | Expand 10 after
5702 "tools/transport_security_state_generator/trie/trie_writer.cc", 5697 "tools/transport_security_state_generator/trie/trie_writer.cc",
5703 "tools/transport_security_state_generator/trie/trie_writer.h", 5698 "tools/transport_security_state_generator/trie/trie_writer.h",
5704 ] 5699 ]
5705 deps = [ 5700 deps = [
5706 "//base", 5701 "//base",
5707 "//crypto", 5702 "//crypto",
5708 "//third_party/boringssl", 5703 "//third_party/boringssl",
5709 ] 5704 ]
5710 } 5705 }
5711 } 5706 }
OLDNEW
« no previous file with comments | « chromeos/network/onc/onc_certificate_importer_impl_unittest.cc ('k') | net/base/crypto_module.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698