| 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 4274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4285 "cert/ct_objects_extractor_unittest.cc", | 4285 "cert/ct_objects_extractor_unittest.cc", |
| 4286 "cert/ct_policy_enforcer_unittest.cc", | 4286 "cert/ct_policy_enforcer_unittest.cc", |
| 4287 "cert/ct_serialization_unittest.cc", | 4287 "cert/ct_serialization_unittest.cc", |
| 4288 "cert/ev_root_ca_metadata_unittest.cc", | 4288 "cert/ev_root_ca_metadata_unittest.cc", |
| 4289 "cert/internal/cert_issuer_source_aia_unittest.cc", | 4289 "cert/internal/cert_issuer_source_aia_unittest.cc", |
| 4290 "cert/internal/cert_issuer_source_static_unittest.cc", | 4290 "cert/internal/cert_issuer_source_static_unittest.cc", |
| 4291 "cert/internal/cert_issuer_source_sync_unittest.h", | 4291 "cert/internal/cert_issuer_source_sync_unittest.h", |
| 4292 "cert/internal/certificate_policies_unittest.cc", | 4292 "cert/internal/certificate_policies_unittest.cc", |
| 4293 "cert/internal/extended_key_usage_unittest.cc", | 4293 "cert/internal/extended_key_usage_unittest.cc", |
| 4294 "cert/internal/name_constraints_unittest.cc", | 4294 "cert/internal/name_constraints_unittest.cc", |
| 4295 "cert/internal/nist_pkits_unittest.cc", |
| 4295 "cert/internal/nist_pkits_unittest.h", | 4296 "cert/internal/nist_pkits_unittest.h", |
| 4296 "cert/internal/parse_certificate_unittest.cc", | 4297 "cert/internal/parse_certificate_unittest.cc", |
| 4297 "cert/internal/parse_name_unittest.cc", | 4298 "cert/internal/parse_name_unittest.cc", |
| 4298 "cert/internal/parse_ocsp_unittest.cc", | 4299 "cert/internal/parse_ocsp_unittest.cc", |
| 4299 "cert/internal/parsed_certificate_unittest.cc", | 4300 "cert/internal/parsed_certificate_unittest.cc", |
| 4300 "cert/internal/path_builder_pkits_unittest.cc", | 4301 "cert/internal/path_builder_pkits_unittest.cc", |
| 4301 "cert/internal/path_builder_unittest.cc", | 4302 "cert/internal/path_builder_unittest.cc", |
| 4302 "cert/internal/path_builder_verify_certificate_chain_unittest.cc", | 4303 "cert/internal/path_builder_verify_certificate_chain_unittest.cc", |
| 4303 "cert/internal/signature_algorithm_unittest.cc", | 4304 "cert/internal/signature_algorithm_unittest.cc", |
| 4304 "cert/internal/test_helpers.cc", | 4305 "cert/internal/test_helpers.cc", |
| (...skipping 1589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5894 ] | 5895 ] |
| 5895 deps = [ | 5896 deps = [ |
| 5896 ":net_fuzzer_test_support", | 5897 ":net_fuzzer_test_support", |
| 5897 ":test_support", | 5898 ":test_support", |
| 5898 "//base", | 5899 "//base", |
| 5899 "//net", | 5900 "//net", |
| 5900 ] | 5901 ] |
| 5901 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5902 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5902 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5903 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5903 } | 5904 } |
| OLD | NEW |