| 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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 "cert/ct_sct_to_string.cc", | 552 "cert/ct_sct_to_string.cc", |
| 553 "cert/ct_sct_to_string.h", | 553 "cert/ct_sct_to_string.h", |
| 554 "cert/ct_serialization.cc", | 554 "cert/ct_serialization.cc", |
| 555 "cert/ct_serialization.h", | 555 "cert/ct_serialization.h", |
| 556 "cert/ct_signed_certificate_timestamp_log_param.cc", | 556 "cert/ct_signed_certificate_timestamp_log_param.cc", |
| 557 "cert/ct_signed_certificate_timestamp_log_param.h", | 557 "cert/ct_signed_certificate_timestamp_log_param.h", |
| 558 "cert/ev_root_ca_metadata.cc", | 558 "cert/ev_root_ca_metadata.cc", |
| 559 "cert/ev_root_ca_metadata.h", | 559 "cert/ev_root_ca_metadata.h", |
| 560 "cert/internal/cert_issuer_source_nss.cc", | 560 "cert/internal/cert_issuer_source_nss.cc", |
| 561 "cert/internal/cert_issuer_source_nss.h", | 561 "cert/internal/cert_issuer_source_nss.h", |
| 562 "cert/internal/system_trust_store.cc", |
| 563 "cert/internal/system_trust_store.h", |
| 562 "cert/internal/trust_store_mac.cc", | 564 "cert/internal/trust_store_mac.cc", |
| 563 "cert/internal/trust_store_mac.h", | 565 "cert/internal/trust_store_mac.h", |
| 564 "cert/internal/trust_store_nss.cc", | 566 "cert/internal/trust_store_nss.cc", |
| 565 "cert/internal/trust_store_nss.h", | 567 "cert/internal/trust_store_nss.h", |
| 566 "cert/jwk_serializer.cc", | 568 "cert/jwk_serializer.cc", |
| 567 "cert/jwk_serializer.h", | 569 "cert/jwk_serializer.h", |
| 568 "cert/merkle_audit_proof.cc", | 570 "cert/merkle_audit_proof.cc", |
| 569 "cert/merkle_audit_proof.h", | 571 "cert/merkle_audit_proof.h", |
| 570 "cert/merkle_consistency_proof.cc", | 572 "cert/merkle_consistency_proof.cc", |
| 571 "cert/merkle_consistency_proof.h", | 573 "cert/merkle_consistency_proof.h", |
| (...skipping 5222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5794 ] | 5796 ] |
| 5795 deps = [ | 5797 deps = [ |
| 5796 ":net_fuzzer_test_support", | 5798 ":net_fuzzer_test_support", |
| 5797 ":test_support", | 5799 ":test_support", |
| 5798 "//base", | 5800 "//base", |
| 5799 "//net", | 5801 "//net", |
| 5800 ] | 5802 ] |
| 5801 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5803 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5802 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5804 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5803 } | 5805 } |
| OLD | NEW |