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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 "socket/ssl_client_socket_impl.h", | 320 "socket/ssl_client_socket_impl.h", |
321 "socket/ssl_socket.h", | 321 "socket/ssl_socket.h", |
322 "ssl/channel_id_service.cc", | 322 "ssl/channel_id_service.cc", |
323 "ssl/channel_id_service.h", | 323 "ssl/channel_id_service.h", |
324 "ssl/channel_id_store.cc", | 324 "ssl/channel_id_store.cc", |
325 "ssl/channel_id_store.h", | 325 "ssl/channel_id_store.h", |
326 "ssl/client_cert_identity.cc", | 326 "ssl/client_cert_identity.cc", |
327 "ssl/client_cert_identity.h", | 327 "ssl/client_cert_identity.h", |
328 "ssl/client_cert_identity_mac.cc", | 328 "ssl/client_cert_identity_mac.cc", |
329 "ssl/client_cert_identity_mac.h", | 329 "ssl/client_cert_identity_mac.h", |
330 "ssl/client_key_store.cc", | |
331 "ssl/client_key_store.h", | |
332 "ssl/default_channel_id_store.cc", | 330 "ssl/default_channel_id_store.cc", |
333 "ssl/default_channel_id_store.h", | 331 "ssl/default_channel_id_store.h", |
334 "ssl/openssl_ssl_util.cc", | 332 "ssl/openssl_ssl_util.cc", |
335 "ssl/openssl_ssl_util.h", | 333 "ssl/openssl_ssl_util.h", |
336 "ssl/ssl_cert_request_info.cc", | 334 "ssl/ssl_cert_request_info.cc", |
337 "ssl/ssl_cert_request_info.h", | 335 "ssl/ssl_cert_request_info.h", |
338 "ssl/ssl_cipher_suite_names.cc", | 336 "ssl/ssl_cipher_suite_names.cc", |
339 "ssl/ssl_cipher_suite_names.h", | 337 "ssl/ssl_cipher_suite_names.h", |
340 "ssl/ssl_client_auth_cache.cc", | 338 "ssl/ssl_client_auth_cache.cc", |
341 "ssl/ssl_client_auth_cache.h", | 339 "ssl/ssl_client_auth_cache.h", |
(...skipping 1488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1830 ] | 1828 ] |
1831 if (is_chromeos) { | 1829 if (is_chromeos) { |
1832 # These were already removed on non-ChromeOS. | 1830 # These were already removed on non-ChromeOS. |
1833 sources -= [ | 1831 sources -= [ |
1834 "cert/nss_cert_database_chromeos.cc", | 1832 "cert/nss_cert_database_chromeos.cc", |
1835 "cert/nss_cert_database_chromeos.h", | 1833 "cert/nss_cert_database_chromeos.h", |
1836 "cert/nss_profile_filter_chromeos.cc", | 1834 "cert/nss_profile_filter_chromeos.cc", |
1837 "cert/nss_profile_filter_chromeos.h", | 1835 "cert/nss_profile_filter_chromeos.h", |
1838 ] | 1836 ] |
1839 } | 1837 } |
1840 sources -= [ | 1838 sources -= [ "ssl/ssl_platform_key_nss.cc" ] |
1841 "ssl/client_key_store.cc", | |
1842 "ssl/client_key_store.h", | |
1843 "ssl/ssl_platform_key_nss.cc", | |
1844 ] | |
1845 } else { | 1839 } else { |
1846 sources += [ | 1840 sources += [ |
1847 "third_party/nss/ssl/cmpcert.cc", | 1841 "third_party/nss/ssl/cmpcert.cc", |
1848 "third_party/nss/ssl/cmpcert.h", | 1842 "third_party/nss/ssl/cmpcert.h", |
1849 ] | 1843 ] |
1850 } | 1844 } |
1851 | 1845 |
1852 if (!use_nss_certs) { | 1846 if (!use_nss_certs) { |
1853 # These files are part of the partial implementation of NSS for | 1847 # These files are part of the partial implementation of NSS for |
1854 # cert verification, so keep them in that case. | 1848 # cert verification, so keep them in that case. |
(...skipping 4200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6055 ] | 6049 ] |
6056 deps = [ | 6050 deps = [ |
6057 ":net_fuzzer_test_support", | 6051 ":net_fuzzer_test_support", |
6058 ":test_support", | 6052 ":test_support", |
6059 "//base", | 6053 "//base", |
6060 "//net", | 6054 "//net", |
6061 ] | 6055 ] |
6062 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 6056 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
6063 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 6057 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
6064 } | 6058 } |
OLD | NEW |