| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 "base/port_util.h", | 147 "base/port_util.h", |
| 148 "base/privacy_mode.h", | 148 "base/privacy_mode.h", |
| 149 "base/rand_callback.h", | 149 "base/rand_callback.h", |
| 150 "base/registry_controlled_domains/registry_controlled_domain.cc", | 150 "base/registry_controlled_domains/registry_controlled_domain.cc", |
| 151 "base/registry_controlled_domains/registry_controlled_domain.h", | 151 "base/registry_controlled_domains/registry_controlled_domain.h", |
| 152 "base/sockaddr_storage.cc", | 152 "base/sockaddr_storage.cc", |
| 153 "base/sockaddr_storage.h", | 153 "base/sockaddr_storage.h", |
| 154 "base/sys_addrinfo.h", | 154 "base/sys_addrinfo.h", |
| 155 "base/url_util.cc", | 155 "base/url_util.cc", |
| 156 "base/url_util.h", | 156 "base/url_util.h", |
| 157 "base/zap.cc", | |
| 158 "base/zap.h", | |
| 159 "cert/asn1_util.cc", | 157 "cert/asn1_util.cc", |
| 160 "cert/asn1_util.h", | 158 "cert/asn1_util.h", |
| 161 "cert/cert_database.cc", | 159 "cert/cert_database.cc", |
| 162 "cert/cert_database.h", | 160 "cert/cert_database.h", |
| 163 "cert/cert_database_openssl.cc", | 161 "cert/cert_database_openssl.cc", |
| 164 "cert/cert_status_flags.cc", | 162 "cert/cert_status_flags.cc", |
| 165 "cert/cert_status_flags.h", | 163 "cert/cert_status_flags.h", |
| 166 "cert/cert_status_flags_list.h", | 164 "cert/cert_status_flags_list.h", |
| 167 "cert/cert_verifier.cc", | 165 "cert/cert_verifier.cc", |
| 168 "cert/cert_verifier.h", | 166 "cert/cert_verifier.h", |
| (...skipping 5913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6082 ] | 6080 ] |
| 6083 deps = [ | 6081 deps = [ |
| 6084 ":net_fuzzer_test_support", | 6082 ":net_fuzzer_test_support", |
| 6085 ":test_support", | 6083 ":test_support", |
| 6086 "//base", | 6084 "//base", |
| 6087 "//net", | 6085 "//net", |
| 6088 ] | 6086 ] |
| 6089 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 6087 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 6090 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 6088 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 6091 } | 6089 } |
| OLD | NEW |