Chromium Code Reviews| 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 2026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2037 sources = [ | 2037 sources = [ |
| 2038 "http/http_auth_challenge_tokenizer_fuzzer.cc", | 2038 "http/http_auth_challenge_tokenizer_fuzzer.cc", |
| 2039 ] | 2039 ] |
| 2040 deps = [ | 2040 deps = [ |
| 2041 ":net_fuzzer_test_support", | 2041 ":net_fuzzer_test_support", |
| 2042 ":test_support", | 2042 ":test_support", |
| 2043 "//base", | 2043 "//base", |
| 2044 "//net", | 2044 "//net", |
| 2045 ] | 2045 ] |
| 2046 } | 2046 } |
| 2047 | |
| 2048 fuzzer_test("net_http_security_headers_hsts_fuzzer") { | |
| 2049 sources = [ | |
| 2050 "http/http_security_headers_hsts_fuzzer.cc", | |
| 2051 ] | |
| 2052 deps = [ | |
| 2053 "//base", | |
| 2054 "//net", | |
| 2055 ] | |
| 2056 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | |
| 2057 } | |
| 2058 | |
| 2059 fuzzer_test("net_http_security_headers_hpkp_fuzzer") { | |
| 2060 sources = [ | |
| 2061 "http/http_security_headers_hpkp_fuzzer.cc", | |
| 2062 ] | |
| 2063 deps = [ | |
| 2064 "//base", | |
| 2065 "//net", | |
|
davidben
2016/10/25 21:32:04
Nit: for the sake of completeness, since you inclu
martijnc
2016/10/26 17:10:28
Done.
| |
| 2066 ] | |
| 2067 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | |
| 2068 } | |
| 2069 | |
| 2070 fuzzer_test("net_http_security_headers_hpkp_report_only_fuzzer") { | |
| 2071 sources = [ | |
| 2072 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | |
| 2073 ] | |
| 2074 deps = [ | |
| 2075 "//base", | |
| 2076 "//net", | |
|
davidben
2016/10/25 21:32:04
Ditto.
martijnc
2016/10/26 17:10:28
Done.
| |
| 2077 ] | |
| 2078 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | |
| 2079 } | |
| OLD | NEW |