OLD | NEW |
---|---|
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 1581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1592 'http/mock_allow_url_security_manager.cc', | 1592 'http/mock_allow_url_security_manager.cc', |
1593 'http/mock_allow_url_security_manager.h', | 1593 'http/mock_allow_url_security_manager.h', |
1594 'http/mock_gssapi_library_posix.cc', | 1594 'http/mock_gssapi_library_posix.cc', |
1595 'http/mock_gssapi_library_posix.h', | 1595 'http/mock_gssapi_library_posix.h', |
1596 'http/mock_http_cache.cc', | 1596 'http/mock_http_cache.cc', |
1597 'http/mock_http_cache.h', | 1597 'http/mock_http_cache.h', |
1598 'http/mock_sspi_library_win.cc', | 1598 'http/mock_sspi_library_win.cc', |
1599 'http/mock_sspi_library_win.h', | 1599 'http/mock_sspi_library_win.h', |
1600 'http/transport_security_state_unittest.cc', | 1600 'http/transport_security_state_unittest.cc', |
1601 'http/url_security_manager_unittest.cc', | 1601 'http/url_security_manager_unittest.cc', |
1602 'ocsp/nss_ocsp_unittest.cc', | |
wtc
2013/05/16 19:21:13
nss_ocsp_unittest.cc is only testing id-ad-caIssue
Ryan Sleevi
2013/05/16 21:25:38
This is intentional, to match the naming of the fi
| |
1602 'proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc', | 1603 'proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc', |
1603 'proxy/dhcp_proxy_script_fetcher_factory_unittest.cc', | 1604 'proxy/dhcp_proxy_script_fetcher_factory_unittest.cc', |
1604 'proxy/dhcp_proxy_script_fetcher_win_unittest.cc', | 1605 'proxy/dhcp_proxy_script_fetcher_win_unittest.cc', |
1605 'proxy/multi_threaded_proxy_resolver_unittest.cc', | 1606 'proxy/multi_threaded_proxy_resolver_unittest.cc', |
1606 'proxy/network_delegate_error_observer_unittest.cc', | 1607 'proxy/network_delegate_error_observer_unittest.cc', |
1607 'proxy/proxy_bypass_rules_unittest.cc', | 1608 'proxy/proxy_bypass_rules_unittest.cc', |
1608 'proxy/proxy_config_service_android_unittest.cc', | 1609 'proxy/proxy_config_service_android_unittest.cc', |
1609 'proxy/proxy_config_service_linux_unittest.cc', | 1610 'proxy/proxy_config_service_linux_unittest.cc', |
1610 'proxy/proxy_config_service_win_unittest.cc', | 1611 'proxy/proxy_config_service_win_unittest.cc', |
1611 'proxy/proxy_config_unittest.cc', | 1612 'proxy/proxy_config_unittest.cc', |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1858 'USE_KERBEROS', | 1859 'USE_KERBEROS', |
1859 ], | 1860 ], |
1860 }, { # use_kerberos == 0 | 1861 }, { # use_kerberos == 0 |
1861 'sources!': [ | 1862 'sources!': [ |
1862 'http/http_auth_gssapi_posix_unittest.cc', | 1863 'http/http_auth_gssapi_posix_unittest.cc', |
1863 'http/http_auth_handler_negotiate_unittest.cc', | 1864 'http/http_auth_handler_negotiate_unittest.cc', |
1864 'http/mock_gssapi_library_posix.cc', | 1865 'http/mock_gssapi_library_posix.cc', |
1865 'http/mock_gssapi_library_posix.h', | 1866 'http/mock_gssapi_library_posix.h', |
1866 ], | 1867 ], |
1867 }], | 1868 }], |
1869 [ 'use_openssl == 1 or (use_glib == 0 and OS != "ios")', { | |
1870 # Only include this test when on Posix and using NSS for | |
1871 # cert verification or on iOS (which also uses NSS for certs). | |
1872 'sources!': [ | |
1873 'ocsp/nss_ocsp_unittest.cc', | |
1874 ], | |
1875 }], | |
1868 [ 'use_openssl==1', { | 1876 [ 'use_openssl==1', { |
1869 # When building for OpenSSL, we need to exclude NSS specific tests. | 1877 # When building for OpenSSL, we need to exclude NSS specific tests. |
1870 # TODO(bulach): Add equivalent tests when the underlying | 1878 # TODO(bulach): Add equivalent tests when the underlying |
1871 # functionality is ported to OpenSSL. | 1879 # functionality is ported to OpenSSL. |
1872 'sources!': [ | 1880 'sources!': [ |
1873 'cert/nss_cert_database_unittest.cc', | 1881 'cert/nss_cert_database_unittest.cc', |
1874 'cert/x509_util_nss_unittest.cc', | 1882 'cert/x509_util_nss_unittest.cc', |
1875 'ssl/client_cert_store_impl_unittest.cc', | 1883 'ssl/client_cert_store_impl_unittest.cc', |
1876 ], | 1884 ], |
1877 }, { # else !use_openssl: remove the unneeded files | 1885 }, { # else !use_openssl: remove the unneeded files |
(...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2870 '--result', '<@(_outputs)', | 2878 '--result', '<@(_outputs)', |
2871 '--isolate', 'net_unittests.isolate', | 2879 '--isolate', 'net_unittests.isolate', |
2872 ], | 2880 ], |
2873 }, | 2881 }, |
2874 ], | 2882 ], |
2875 }, | 2883 }, |
2876 ], | 2884 ], |
2877 }], | 2885 }], |
2878 ], | 2886 ], |
2879 } | 2887 } |
OLD | NEW |