| 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 2182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2193 "//build/config/sanitizers:deps", | 2193 "//build/config/sanitizers:deps", |
| 2194 "//build/win:default_exe_manifest", | 2194 "//build/win:default_exe_manifest", |
| 2195 ] | 2195 ] |
| 2196 } | 2196 } |
| 2197 } | 2197 } |
| 2198 | 2198 |
| 2199 bundle_data("test_support_bundle_data") { | 2199 bundle_data("test_support_bundle_data") { |
| 2200 visibility = [ ":test_support" ] | 2200 visibility = [ ":test_support" ] |
| 2201 testonly = true | 2201 testonly = true |
| 2202 sources = [ | 2202 sources = [ |
| 2203 "data/quic_http_response_cache_data_with_push/test.example.com/favicon.ico", |
| 2204 "data/quic_http_response_cache_data_with_push/test.example.com/index.html", |
| 2205 "data/quic_http_response_cache_data_with_push/test.example.com/index2.html", |
| 2206 "data/quic_http_response_cache_data_with_push/test.example.com/kitten-1.jpg"
, |
| 2203 "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem", | 2207 "data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem", |
| 2204 "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem", | 2208 "data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem", |
| 2205 "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem", | 2209 "data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem", |
| 2206 "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", | 2210 "data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem", |
| 2207 "data/ssl/certificates/1024-rsa-intermediate.pem", | 2211 "data/ssl/certificates/1024-rsa-intermediate.pem", |
| 2208 "data/ssl/certificates/10_year_validity.pem", | 2212 "data/ssl/certificates/10_year_validity.pem", |
| 2209 "data/ssl/certificates/11_year_validity.pem", | 2213 "data/ssl/certificates/11_year_validity.pem", |
| 2210 "data/ssl/certificates/2029_globalsign_com_cert.pem", | 2214 "data/ssl/certificates/2029_globalsign_com_cert.pem", |
| 2211 "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem", | 2215 "data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem", |
| 2212 "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem", | 2216 "data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem", |
| (...skipping 3566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5779 ] | 5783 ] |
| 5780 deps = [ | 5784 deps = [ |
| 5781 ":net_fuzzer_test_support", | 5785 ":net_fuzzer_test_support", |
| 5782 ":test_support", | 5786 ":test_support", |
| 5783 "//base", | 5787 "//base", |
| 5784 "//net", | 5788 "//net", |
| 5785 ] | 5789 ] |
| 5786 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5790 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5787 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5791 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5788 } | 5792 } |
| OLD | NEW |