OLD | NEW |
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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 "socket/ssl_client_socket_impl.h", | 318 "socket/ssl_client_socket_impl.h", |
319 "socket/ssl_socket.h", | 319 "socket/ssl_socket.h", |
320 "ssl/channel_id_service.cc", | 320 "ssl/channel_id_service.cc", |
321 "ssl/channel_id_service.h", | 321 "ssl/channel_id_service.h", |
322 "ssl/channel_id_store.cc", | 322 "ssl/channel_id_store.cc", |
323 "ssl/channel_id_store.h", | 323 "ssl/channel_id_store.h", |
324 "ssl/client_cert_identity.cc", | 324 "ssl/client_cert_identity.cc", |
325 "ssl/client_cert_identity.h", | 325 "ssl/client_cert_identity.h", |
326 "ssl/client_cert_identity_mac.cc", | 326 "ssl/client_cert_identity_mac.cc", |
327 "ssl/client_cert_identity_mac.h", | 327 "ssl/client_cert_identity_mac.h", |
328 "ssl/client_key_store.cc", | |
329 "ssl/client_key_store.h", | |
330 "ssl/default_channel_id_store.cc", | 328 "ssl/default_channel_id_store.cc", |
331 "ssl/default_channel_id_store.h", | 329 "ssl/default_channel_id_store.h", |
332 "ssl/openssl_ssl_util.cc", | 330 "ssl/openssl_ssl_util.cc", |
333 "ssl/openssl_ssl_util.h", | 331 "ssl/openssl_ssl_util.h", |
334 "ssl/ssl_cert_request_info.cc", | 332 "ssl/ssl_cert_request_info.cc", |
335 "ssl/ssl_cert_request_info.h", | 333 "ssl/ssl_cert_request_info.h", |
336 "ssl/ssl_cipher_suite_names.cc", | 334 "ssl/ssl_cipher_suite_names.cc", |
337 "ssl/ssl_cipher_suite_names.h", | 335 "ssl/ssl_cipher_suite_names.h", |
338 "ssl/ssl_client_auth_cache.cc", | 336 "ssl/ssl_client_auth_cache.cc", |
339 "ssl/ssl_client_auth_cache.h", | 337 "ssl/ssl_client_auth_cache.h", |
(...skipping 1485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1825 ] | 1823 ] |
1826 if (is_chromeos) { | 1824 if (is_chromeos) { |
1827 # These were already removed on non-ChromeOS. | 1825 # These were already removed on non-ChromeOS. |
1828 sources -= [ | 1826 sources -= [ |
1829 "cert/nss_cert_database_chromeos.cc", | 1827 "cert/nss_cert_database_chromeos.cc", |
1830 "cert/nss_cert_database_chromeos.h", | 1828 "cert/nss_cert_database_chromeos.h", |
1831 "cert/nss_profile_filter_chromeos.cc", | 1829 "cert/nss_profile_filter_chromeos.cc", |
1832 "cert/nss_profile_filter_chromeos.h", | 1830 "cert/nss_profile_filter_chromeos.h", |
1833 ] | 1831 ] |
1834 } | 1832 } |
1835 sources -= [ | 1833 sources -= [ "ssl/ssl_platform_key_nss.cc" ] |
1836 "ssl/client_key_store.cc", | |
1837 "ssl/client_key_store.h", | |
1838 "ssl/ssl_platform_key_nss.cc", | |
1839 ] | |
1840 } else { | 1834 } else { |
1841 sources += [ | 1835 sources += [ |
1842 "third_party/nss/ssl/cmpcert.cc", | 1836 "third_party/nss/ssl/cmpcert.cc", |
1843 "third_party/nss/ssl/cmpcert.h", | 1837 "third_party/nss/ssl/cmpcert.h", |
1844 ] | 1838 ] |
1845 } | 1839 } |
1846 | 1840 |
1847 if (!use_nss_certs) { | 1841 if (!use_nss_certs) { |
1848 # These files are part of the partial implementation of NSS for | 1842 # These files are part of the partial implementation of NSS for |
1849 # cert verification, so keep them in that case. | 1843 # cert verification, so keep them in that case. |
(...skipping 4191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6041 ] | 6035 ] |
6042 deps = [ | 6036 deps = [ |
6043 ":net_fuzzer_test_support", | 6037 ":net_fuzzer_test_support", |
6044 ":test_support", | 6038 ":test_support", |
6045 "//base", | 6039 "//base", |
6046 "//net", | 6040 "//net", |
6047 ] | 6041 ] |
6048 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 6042 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
6049 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 6043 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
6050 } | 6044 } |
OLD | NEW |