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

Side by Side Diff: net/net.gyp

Issue 15080007: Introduce unit test for NSS OCSP/AIA fetching (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Compile warning Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 { 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 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 1582 matching lines...) Expand 10 before | Expand all | Expand 10 after
1593 'http/mock_allow_url_security_manager.cc', 1593 'http/mock_allow_url_security_manager.cc',
1594 'http/mock_allow_url_security_manager.h', 1594 'http/mock_allow_url_security_manager.h',
1595 'http/mock_gssapi_library_posix.cc', 1595 'http/mock_gssapi_library_posix.cc',
1596 'http/mock_gssapi_library_posix.h', 1596 'http/mock_gssapi_library_posix.h',
1597 'http/mock_http_cache.cc', 1597 'http/mock_http_cache.cc',
1598 'http/mock_http_cache.h', 1598 'http/mock_http_cache.h',
1599 'http/mock_sspi_library_win.cc', 1599 'http/mock_sspi_library_win.cc',
1600 'http/mock_sspi_library_win.h', 1600 'http/mock_sspi_library_win.h',
1601 'http/transport_security_state_unittest.cc', 1601 'http/transport_security_state_unittest.cc',
1602 'http/url_security_manager_unittest.cc', 1602 'http/url_security_manager_unittest.cc',
1603 'ocsp/nss_ocsp_unittest.cc',
1603 'proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc', 1604 'proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc',
1604 'proxy/dhcp_proxy_script_fetcher_factory_unittest.cc', 1605 'proxy/dhcp_proxy_script_fetcher_factory_unittest.cc',
1605 'proxy/dhcp_proxy_script_fetcher_win_unittest.cc', 1606 'proxy/dhcp_proxy_script_fetcher_win_unittest.cc',
1606 'proxy/multi_threaded_proxy_resolver_unittest.cc', 1607 'proxy/multi_threaded_proxy_resolver_unittest.cc',
1607 'proxy/network_delegate_error_observer_unittest.cc', 1608 'proxy/network_delegate_error_observer_unittest.cc',
1608 'proxy/proxy_bypass_rules_unittest.cc', 1609 'proxy/proxy_bypass_rules_unittest.cc',
1609 'proxy/proxy_config_service_android_unittest.cc', 1610 'proxy/proxy_config_service_android_unittest.cc',
1610 'proxy/proxy_config_service_linux_unittest.cc', 1611 'proxy/proxy_config_service_linux_unittest.cc',
1611 'proxy/proxy_config_service_win_unittest.cc', 1612 'proxy/proxy_config_service_win_unittest.cc',
1612 'proxy/proxy_config_unittest.cc', 1613 'proxy/proxy_config_unittest.cc',
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
1862 'USE_KERBEROS', 1863 'USE_KERBEROS',
1863 ], 1864 ],
1864 }, { # use_kerberos == 0 1865 }, { # use_kerberos == 0
1865 'sources!': [ 1866 'sources!': [
1866 'http/http_auth_gssapi_posix_unittest.cc', 1867 'http/http_auth_gssapi_posix_unittest.cc',
1867 'http/http_auth_handler_negotiate_unittest.cc', 1868 'http/http_auth_handler_negotiate_unittest.cc',
1868 'http/mock_gssapi_library_posix.cc', 1869 'http/mock_gssapi_library_posix.cc',
1869 'http/mock_gssapi_library_posix.h', 1870 'http/mock_gssapi_library_posix.h',
1870 ], 1871 ],
1871 }], 1872 }],
1873 [ 'use_openssl == 1 or (use_glib == 0 and OS != "ios")', {
1874 # Only include this test when on Posix and using NSS for
1875 # cert verification or on iOS (which also uses NSS for certs).
1876 'sources!': [
1877 'ocsp/nss_ocsp_unittest.cc',
1878 ],
1879 }],
1872 [ 'use_openssl==1', { 1880 [ 'use_openssl==1', {
1873 # When building for OpenSSL, we need to exclude NSS specific tests. 1881 # When building for OpenSSL, we need to exclude NSS specific tests.
1874 # TODO(bulach): Add equivalent tests when the underlying 1882 # TODO(bulach): Add equivalent tests when the underlying
1875 # functionality is ported to OpenSSL. 1883 # functionality is ported to OpenSSL.
1876 'sources!': [ 1884 'sources!': [
1877 'cert/nss_cert_database_unittest.cc', 1885 'cert/nss_cert_database_unittest.cc',
1878 'cert/x509_util_nss_unittest.cc', 1886 'cert/x509_util_nss_unittest.cc',
1879 'ssl/client_cert_store_impl_unittest.cc', 1887 'ssl/client_cert_store_impl_unittest.cc',
1880 ], 1888 ],
1881 }, { # else !use_openssl: remove the unneeded files 1889 }, { # else !use_openssl: remove the unneeded files
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after
2880 '--result', '<@(_outputs)', 2888 '--result', '<@(_outputs)',
2881 '--isolate', 'net_unittests.isolate', 2889 '--isolate', 'net_unittests.isolate',
2882 ], 2890 ],
2883 }, 2891 },
2884 ], 2892 ],
2885 }, 2893 },
2886 ], 2894 ],
2887 }], 2895 }],
2888 ], 2896 ],
2889 } 2897 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698