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

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: Be nicer when tests blow up 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
« no previous file with comments | « no previous file | net/ocsp/nss_ocsp_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1587 matching lines...) Expand 10 before | Expand all | Expand 10 after
1598 'http/mock_allow_url_security_manager.cc', 1598 'http/mock_allow_url_security_manager.cc',
1599 'http/mock_allow_url_security_manager.h', 1599 'http/mock_allow_url_security_manager.h',
1600 'http/mock_gssapi_library_posix.cc', 1600 'http/mock_gssapi_library_posix.cc',
1601 'http/mock_gssapi_library_posix.h', 1601 'http/mock_gssapi_library_posix.h',
1602 'http/mock_http_cache.cc', 1602 'http/mock_http_cache.cc',
1603 'http/mock_http_cache.h', 1603 'http/mock_http_cache.h',
1604 'http/mock_sspi_library_win.cc', 1604 'http/mock_sspi_library_win.cc',
1605 'http/mock_sspi_library_win.h', 1605 'http/mock_sspi_library_win.h',
1606 'http/transport_security_state_unittest.cc', 1606 'http/transport_security_state_unittest.cc',
1607 'http/url_security_manager_unittest.cc', 1607 'http/url_security_manager_unittest.cc',
1608 'ocsp/nss_ocsp_unittest.cc',
1608 'proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc', 1609 'proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc',
1609 'proxy/dhcp_proxy_script_fetcher_factory_unittest.cc', 1610 'proxy/dhcp_proxy_script_fetcher_factory_unittest.cc',
1610 'proxy/dhcp_proxy_script_fetcher_win_unittest.cc', 1611 'proxy/dhcp_proxy_script_fetcher_win_unittest.cc',
1611 'proxy/multi_threaded_proxy_resolver_unittest.cc', 1612 'proxy/multi_threaded_proxy_resolver_unittest.cc',
1612 'proxy/network_delegate_error_observer_unittest.cc', 1613 'proxy/network_delegate_error_observer_unittest.cc',
1613 'proxy/proxy_bypass_rules_unittest.cc', 1614 'proxy/proxy_bypass_rules_unittest.cc',
1614 'proxy/proxy_config_service_android_unittest.cc', 1615 'proxy/proxy_config_service_android_unittest.cc',
1615 'proxy/proxy_config_service_linux_unittest.cc', 1616 'proxy/proxy_config_service_linux_unittest.cc',
1616 'proxy/proxy_config_service_win_unittest.cc', 1617 'proxy/proxy_config_service_win_unittest.cc',
1617 'proxy/proxy_config_unittest.cc', 1618 'proxy/proxy_config_unittest.cc',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
1869 'USE_KERBEROS', 1870 'USE_KERBEROS',
1870 ], 1871 ],
1871 }, { # use_kerberos == 0 1872 }, { # use_kerberos == 0
1872 'sources!': [ 1873 'sources!': [
1873 'http/http_auth_gssapi_posix_unittest.cc', 1874 'http/http_auth_gssapi_posix_unittest.cc',
1874 'http/http_auth_handler_negotiate_unittest.cc', 1875 'http/http_auth_handler_negotiate_unittest.cc',
1875 'http/mock_gssapi_library_posix.cc', 1876 'http/mock_gssapi_library_posix.cc',
1876 'http/mock_gssapi_library_posix.h', 1877 'http/mock_gssapi_library_posix.h',
1877 ], 1878 ],
1878 }], 1879 }],
1880 [ 'use_openssl == 1 or (use_glib == 0 and OS != "ios")', {
1881 # Only include this test when on Posix and using NSS for
1882 # cert verification or on iOS (which also uses NSS for certs).
1883 'sources!': [
1884 'ocsp/nss_ocsp_unittest.cc',
1885 ],
1886 }],
1879 [ 'use_openssl==1', { 1887 [ 'use_openssl==1', {
1880 # When building for OpenSSL, we need to exclude NSS specific tests. 1888 # When building for OpenSSL, we need to exclude NSS specific tests.
1881 # TODO(bulach): Add equivalent tests when the underlying 1889 # TODO(bulach): Add equivalent tests when the underlying
1882 # functionality is ported to OpenSSL. 1890 # functionality is ported to OpenSSL.
1883 'sources!': [ 1891 'sources!': [
1884 'cert/nss_cert_database_unittest.cc', 1892 'cert/nss_cert_database_unittest.cc',
1885 'cert/x509_util_nss_unittest.cc', 1893 'cert/x509_util_nss_unittest.cc',
1886 'ssl/client_cert_store_impl_unittest.cc', 1894 'ssl/client_cert_store_impl_unittest.cc',
1887 ], 1895 ],
1888 }, { # else !use_openssl: remove the unneeded files 1896 }, { # else !use_openssl: remove the unneeded files
(...skipping 999 matching lines...) Expand 10 before | Expand all | Expand 10 after
2888 '--result', '<@(_outputs)', 2896 '--result', '<@(_outputs)',
2889 '--isolate', 'net_unittests.isolate', 2897 '--isolate', 'net_unittests.isolate',
2890 ], 2898 ],
2891 }, 2899 },
2892 ], 2900 ],
2893 }, 2901 },
2894 ], 2902 ],
2895 }], 2903 }],
2896 ], 2904 ],
2897 } 2905 }
OLDNEW
« no previous file with comments | « no previous file | net/ocsp/nss_ocsp_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698