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

Side by Side Diff: net/BUILD.gn

Issue 2775053002: Add unittests for different transport security state generator components. (Closed)
Patch Set: fix a comment. Created 3 years, 8 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/tools/transport_security_state_generator/BUILD.gn » ('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 5099 matching lines...) Expand 10 before | Expand all | Expand 10 after
5110 } 5110 }
5111 5111
5112 if (is_win) { 5112 if (is_win) {
5113 libs = [ "iphlpapi.lib" ] 5113 libs = [ "iphlpapi.lib" ]
5114 } 5114 }
5115 5115
5116 if (is_chromecast && use_nss_certs) { 5116 if (is_chromecast && use_nss_certs) {
5117 sources += [ "ssl/ssl_platform_key_chromecast_unittest.cc" ] 5117 sources += [ "ssl/ssl_platform_key_chromecast_unittest.cc" ]
5118 sources -= [ "ssl/ssl_platform_key_nss_unittest.cc" ] 5118 sources -= [ "ssl/ssl_platform_key_nss_unittest.cc" ]
5119 } 5119 }
5120
5121 # Include transport_security_state_generator tests.
5122 if (host_toolchain == current_toolchain) {
5123 deps += [ "//net/tools/transport_security_state_generator:transport_security _state_generator_test_sources" ]
5124 }
5120 } 5125 }
5121 5126
5122 # !is_android && !is_win && !is_mac 5127 # !is_android && !is_win && !is_mac
5123 if (!is_ios && !is_proto_quic) { 5128 if (!is_ios && !is_proto_quic) {
5124 # TODO(crbug.com/594965): this should be converted to "app" template and 5129 # TODO(crbug.com/594965): this should be converted to "app" template and
5125 # enabled on iOS too. 5130 # enabled on iOS too.
5126 executable("net_perftests") { 5131 executable("net_perftests") {
5127 testonly = true 5132 testonly = true
5128 sources = [ 5133 sources = [
5129 "base/mime_sniffer_perftest.cc", 5134 "base/mime_sniffer_perftest.cc",
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
5686 ] 5691 ]
5687 deps = [ 5692 deps = [
5688 ":net_fuzzer_test_support", 5693 ":net_fuzzer_test_support",
5689 ":test_support", 5694 ":test_support",
5690 "//base", 5695 "//base",
5691 "//net", 5696 "//net",
5692 ] 5697 ]
5693 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 5698 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
5694 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 5699 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
5695 } 5700 }
OLDNEW
« no previous file with comments | « no previous file | net/tools/transport_security_state_generator/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698