OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 'linux_link_kerberos%': 0, | 9 'linux_link_kerberos%': 0, |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 'base/cert_database.cc', | 63 'base/cert_database.cc', |
64 'base/cert_database.h', | 64 'base/cert_database.h', |
65 'base/cert_database_mac.cc', | 65 'base/cert_database_mac.cc', |
66 'base/cert_database_nss.cc', | 66 'base/cert_database_nss.cc', |
67 'base/cert_database_openssl.cc', | 67 'base/cert_database_openssl.cc', |
68 'base/cert_database_win.cc', | 68 'base/cert_database_win.cc', |
69 'base/cert_status_flags.cc', | 69 'base/cert_status_flags.cc', |
70 'base/cert_status_flags.h', | 70 'base/cert_status_flags.h', |
71 'base/cert_verifier.cc', | 71 'base/cert_verifier.cc', |
72 'base/cert_verifier.h', | 72 'base/cert_verifier.h', |
| 73 'base/cert_verify_proc_mac.cc', |
| 74 'base/cert_verify_proc_mac.h', |
| 75 'base/cert_verify_proc_nss.cc', |
| 76 'base/cert_verify_proc_nss.h', |
| 77 'base/cert_verify_proc_openssl.cc', |
| 78 'base/cert_verify_proc_openssl.h', |
| 79 'base/cert_verify_proc_win.cc', |
| 80 'base/cert_verify_proc_win.h', |
73 'base/cert_verify_result.cc', | 81 'base/cert_verify_result.cc', |
74 'base/cert_verify_result.h', | 82 'base/cert_verify_result.h', |
75 'base/completion_callback.h', | 83 'base/completion_callback.h', |
76 'base/connection_type_histograms.cc', | 84 'base/connection_type_histograms.cc', |
77 'base/connection_type_histograms.h', | 85 'base/connection_type_histograms.h', |
78 'base/cookie_monster.cc', | 86 'base/cookie_monster.cc', |
79 'base/cookie_monster.h', | 87 'base/cookie_monster.h', |
80 'base/cookie_options.h', | 88 'base/cookie_options.h', |
81 'base/cookie_store.cc', | 89 'base/cookie_store.cc', |
82 'base/cookie_store.h', | 90 'base/cookie_store.h', |
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
805 'sources!': [ | 813 'sources!': [ |
806 'http/http_auth_gssapi_posix.cc', | 814 'http/http_auth_gssapi_posix.cc', |
807 'http/http_auth_gssapi_posix.h', | 815 'http/http_auth_gssapi_posix.h', |
808 'http/http_auth_handler_negotiate.h', | 816 'http/http_auth_handler_negotiate.h', |
809 'http/http_auth_handler_negotiate.cc', | 817 'http/http_auth_handler_negotiate.cc', |
810 ], | 818 ], |
811 }], | 819 }], |
812 ['use_openssl==1', { | 820 ['use_openssl==1', { |
813 'sources!': [ | 821 'sources!': [ |
814 'base/cert_database_nss.cc', | 822 'base/cert_database_nss.cc', |
| 823 'base/cert_verify_proc_nss.cc', |
815 'base/crypto_module_nss.cc', | 824 'base/crypto_module_nss.cc', |
816 'base/dnssec_keyset.cc', | 825 'base/dnssec_keyset.cc', |
817 'base/dnssec_keyset.h', | 826 'base/dnssec_keyset.h', |
818 'base/keygen_handler_nss.cc', | 827 'base/keygen_handler_nss.cc', |
819 'base/nss_memio.c', | 828 'base/nss_memio.c', |
820 'base/nss_memio.h', | 829 'base/nss_memio.h', |
821 'base/test_root_certs_nss.cc', | 830 'base/test_root_certs_nss.cc', |
822 'base/x509_certificate_nss.cc', | 831 'base/x509_certificate_nss.cc', |
823 'base/x509_util_nss.cc', | 832 'base/x509_util_nss.cc', |
824 'base/x509_util_nss.h', | 833 'base/x509_util_nss.h', |
(...skipping 11 matching lines...) Expand all Loading... |
836 'third_party/mozilla_security_manager/nsNSSCertificateDB.h', | 845 'third_party/mozilla_security_manager/nsNSSCertificateDB.h', |
837 'third_party/mozilla_security_manager/nsNSSCertTrust.cpp', | 846 'third_party/mozilla_security_manager/nsNSSCertTrust.cpp', |
838 'third_party/mozilla_security_manager/nsNSSCertTrust.h', | 847 'third_party/mozilla_security_manager/nsNSSCertTrust.h', |
839 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp', | 848 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp', |
840 'third_party/mozilla_security_manager/nsPKCS12Blob.h', | 849 'third_party/mozilla_security_manager/nsPKCS12Blob.h', |
841 ], | 850 ], |
842 }, | 851 }, |
843 { # else !use_openssl: remove the unneeded files | 852 { # else !use_openssl: remove the unneeded files |
844 'sources!': [ | 853 'sources!': [ |
845 'base/cert_database_openssl.cc', | 854 'base/cert_database_openssl.cc', |
| 855 'base/cert_verify_proc_openssl.cc', |
846 'base/crypto_module_openssl.cc', | 856 'base/crypto_module_openssl.cc', |
847 'base/keygen_handler_openssl.cc', | 857 'base/keygen_handler_openssl.cc', |
848 'base/openssl_memory_private_key_store.cc', | 858 'base/openssl_memory_private_key_store.cc', |
849 'base/openssl_private_key_store.h', | 859 'base/openssl_private_key_store.h', |
850 'base/test_root_certs_openssl.cc', | 860 'base/test_root_certs_openssl.cc', |
851 'base/x509_certificate_openssl.cc', | 861 'base/x509_certificate_openssl.cc', |
852 'base/x509_util_openssl.cc', | 862 'base/x509_util_openssl.cc', |
853 'base/x509_util_openssl.h', | 863 'base/x509_util_openssl.h', |
854 'socket/ssl_client_socket_openssl.cc', | 864 'socket/ssl_client_socket_openssl.cc', |
855 'socket/ssl_client_socket_openssl.h', | 865 'socket/ssl_client_socket_openssl.h', |
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1743 'tools/dump_cache/url_to_filename_encoder.cc', | 1753 'tools/dump_cache/url_to_filename_encoder.cc', |
1744 'tools/dump_cache/url_to_filename_encoder.h', | 1754 'tools/dump_cache/url_to_filename_encoder.h', |
1745 'tools/dump_cache/url_utilities.h', | 1755 'tools/dump_cache/url_utilities.h', |
1746 'tools/dump_cache/url_utilities.cc', | 1756 'tools/dump_cache/url_utilities.cc', |
1747 ], | 1757 ], |
1748 }, | 1758 }, |
1749 ], | 1759 ], |
1750 }], | 1760 }], |
1751 ], | 1761 ], |
1752 } | 1762 } |
OLD | NEW |