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

Side by Side Diff: net/BUILD.gn

Issue 2582323004: Migrate static transport security state fuzzer to LibFuzzer. (Closed)
Patch Set: reinterpret_cast Created 3 years, 11 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
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 2058 matching lines...) Expand 10 before | Expand all | Expand 10 after
2069 ] 2069 ]
2070 deps = [ 2070 deps = [
2071 ":net_fuzzer_test_support", 2071 ":net_fuzzer_test_support",
2072 "//base", 2072 "//base",
2073 "//net", 2073 "//net",
2074 "//url", 2074 "//url",
2075 ] 2075 ]
2076 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" 2076 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
2077 } 2077 }
2078 2078
2079 fuzzer_test("net_http_transport_security_state_static_fuzzer") {
2080 sources = [
2081 "http/transport_security_state_static_fuzzer.cc",
2082 ]
2083 deps = [
2084 ":net_fuzzer_test_support",
2085 "//net",
2086 ]
2087 dict =
2088 "data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict"
2089 }
2090
2079 if (host_toolchain == current_toolchain) { 2091 if (host_toolchain == current_toolchain) {
2080 executable("domain_security_preload_generator") { 2092 executable("domain_security_preload_generator") {
2081 sources = gypi_values.net_domain_security_state_generator_sources 2093 sources = gypi_values.net_domain_security_state_generator_sources
2082 deps = [ 2094 deps = [
2083 "//base", 2095 "//base",
2084 "//crypto", 2096 "//crypto",
2085 "//third_party/boringssl", 2097 "//third_party/boringssl",
2086 ] 2098 ]
2087 } 2099 }
2088 } 2100 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698