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

Side by Side Diff: net/BUILD.gn

Issue 2865883002: Unit-test CAPI and CNG SSLPrivateKey implementations. (Closed)
Patch Set: rebase Created 3 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
« no previous file with comments | « no previous file | net/ssl/ssl_platform_key_win.h » ('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 (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 4841 matching lines...) Expand 10 before | Expand all | Expand 10 after
4852 "ssl/ssl_cipher_suite_names_unittest.cc", 4852 "ssl/ssl_cipher_suite_names_unittest.cc",
4853 "ssl/ssl_client_auth_cache_unittest.cc", 4853 "ssl/ssl_client_auth_cache_unittest.cc",
4854 "ssl/ssl_client_session_cache_unittest.cc", 4854 "ssl/ssl_client_session_cache_unittest.cc",
4855 "ssl/ssl_config_service_unittest.cc", 4855 "ssl/ssl_config_service_unittest.cc",
4856 "ssl/ssl_config_unittest.cc", 4856 "ssl/ssl_config_unittest.cc",
4857 "ssl/ssl_connection_status_flags_unittest.cc", 4857 "ssl/ssl_connection_status_flags_unittest.cc",
4858 "ssl/ssl_platform_key_android_unittest.cc", 4858 "ssl/ssl_platform_key_android_unittest.cc",
4859 "ssl/ssl_platform_key_mac_unittest.cc", 4859 "ssl/ssl_platform_key_mac_unittest.cc",
4860 "ssl/ssl_platform_key_nss_unittest.cc", 4860 "ssl/ssl_platform_key_nss_unittest.cc",
4861 "ssl/ssl_platform_key_util_unittest.cc", 4861 "ssl/ssl_platform_key_util_unittest.cc",
4862 "ssl/ssl_platform_key_win_unittest.cc",
4862 "ssl/ssl_private_key_test_util.cc", 4863 "ssl/ssl_private_key_test_util.cc",
4863 "ssl/ssl_private_key_test_util.h", 4864 "ssl/ssl_private_key_test_util.h",
4864 "test/embedded_test_server/embedded_test_server_unittest.cc", 4865 "test/embedded_test_server/embedded_test_server_unittest.cc",
4865 "test/embedded_test_server/http_request_unittest.cc", 4866 "test/embedded_test_server/http_request_unittest.cc",
4866 "test/embedded_test_server/http_response_unittest.cc", 4867 "test/embedded_test_server/http_response_unittest.cc",
4867 "test/python_utils_unittest.cc", 4868 "test/python_utils_unittest.cc",
4868 "test/run_all_unittests.cc", 4869 "test/run_all_unittests.cc",
4869 "third_party/nist-pkits/pkits_testcases-inl.h", 4870 "third_party/nist-pkits/pkits_testcases-inl.h",
4870 "tools/content_decoder_tool/content_decoder_tool.cc", 4871 "tools/content_decoder_tool/content_decoder_tool.cc",
4871 "tools/content_decoder_tool/content_decoder_tool.h", 4872 "tools/content_decoder_tool/content_decoder_tool.h",
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
5265 if (symbol_level > 0) { 5266 if (symbol_level > 0) {
5266 if (is_win) { 5267 if (is_win) {
5267 data += [ "$root_out_dir/net_unittests.exe.pdb" ] 5268 data += [ "$root_out_dir/net_unittests.exe.pdb" ]
5268 } else if (is_mac) { 5269 } else if (is_mac) {
5269 # TODO(crbug.com/330301): make this conditional on mac_strip_release. 5270 # TODO(crbug.com/330301): make this conditional on mac_strip_release.
5270 # data += [ "$root_out_dir/net_unittests.dSYM/" ] 5271 # data += [ "$root_out_dir/net_unittests.dSYM/" ]
5271 } 5272 }
5272 } 5273 }
5273 5274
5274 if (is_win) { 5275 if (is_win) {
5275 libs = [ "iphlpapi.lib" ] 5276 libs = [
5277 "iphlpapi.lib",
5278 "ncrypt.lib",
5279 ]
5276 } 5280 }
5277 5281
5278 if (is_chromecast && use_nss_certs) { 5282 if (is_chromecast && use_nss_certs) {
5279 sources += [ "ssl/ssl_platform_key_chromecast_unittest.cc" ] 5283 sources += [ "ssl/ssl_platform_key_chromecast_unittest.cc" ]
5280 sources -= [ "ssl/ssl_platform_key_nss_unittest.cc" ] 5284 sources -= [ "ssl/ssl_platform_key_nss_unittest.cc" ]
5281 } 5285 }
5282 5286
5283 # Include transport_security_state_generator tests. 5287 # Include transport_security_state_generator tests.
5284 if (host_toolchain == current_toolchain) { 5288 if (host_toolchain == current_toolchain) {
5285 deps += [ "//net/tools/transport_security_state_generator:transport_security _state_generator_test_sources" ] 5289 deps += [ "//net/tools/transport_security_state_generator:transport_security _state_generator_test_sources" ]
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
5869 ] 5873 ]
5870 deps = [ 5874 deps = [
5871 ":net_fuzzer_test_support", 5875 ":net_fuzzer_test_support",
5872 ":test_support", 5876 ":test_support",
5873 "//base", 5877 "//base",
5874 "//net", 5878 "//net",
5875 ] 5879 ]
5876 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 5880 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
5877 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 5881 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
5878 } 5882 }
OLDNEW
« no previous file with comments | « no previous file | net/ssl/ssl_platform_key_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698