| 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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 "cert/cert_verify_proc_mac.cc", | 531 "cert/cert_verify_proc_mac.cc", |
| 532 "cert/cert_verify_proc_mac.h", | 532 "cert/cert_verify_proc_mac.h", |
| 533 "cert/cert_verify_proc_nss.cc", | 533 "cert/cert_verify_proc_nss.cc", |
| 534 "cert/cert_verify_proc_nss.h", | 534 "cert/cert_verify_proc_nss.h", |
| 535 "cert/cert_verify_proc_whitelist.cc", | 535 "cert/cert_verify_proc_whitelist.cc", |
| 536 "cert/cert_verify_proc_whitelist.h", | 536 "cert/cert_verify_proc_whitelist.h", |
| 537 "cert/cert_verify_proc_win.cc", | 537 "cert/cert_verify_proc_win.cc", |
| 538 "cert/cert_verify_proc_win.h", | 538 "cert/cert_verify_proc_win.h", |
| 539 "cert/crl_set_storage.cc", | 539 "cert/crl_set_storage.cc", |
| 540 "cert/crl_set_storage.h", | 540 "cert/crl_set_storage.h", |
| 541 "cert/ct_ev_whitelist.h", | |
| 542 "cert/ct_log_response_parser.cc", | 541 "cert/ct_log_response_parser.cc", |
| 543 "cert/ct_log_response_parser.h", | 542 "cert/ct_log_response_parser.h", |
| 544 "cert/ct_log_verifier.cc", | 543 "cert/ct_log_verifier.cc", |
| 545 "cert/ct_log_verifier.h", | 544 "cert/ct_log_verifier.h", |
| 546 "cert/ct_log_verifier_util.cc", | 545 "cert/ct_log_verifier_util.cc", |
| 547 "cert/ct_log_verifier_util.h", | 546 "cert/ct_log_verifier_util.h", |
| 548 "cert/ct_objects_extractor.cc", | 547 "cert/ct_objects_extractor.cc", |
| 549 "cert/ct_objects_extractor.h", | 548 "cert/ct_objects_extractor.h", |
| 550 "cert/ct_sct_to_string.cc", | 549 "cert/ct_sct_to_string.cc", |
| 551 "cert/ct_sct_to_string.h", | 550 "cert/ct_sct_to_string.h", |
| (...skipping 5508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6060 ] | 6059 ] |
| 6061 deps = [ | 6060 deps = [ |
| 6062 ":net_fuzzer_test_support", | 6061 ":net_fuzzer_test_support", |
| 6063 ":test_support", | 6062 ":test_support", |
| 6064 "//base", | 6063 "//base", |
| 6065 "//net", | 6064 "//net", |
| 6066 ] | 6065 ] |
| 6067 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 6066 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 6068 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 6067 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 6069 } | 6068 } |
| OLD | NEW |