| 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 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1115 source_set("simple_quic_tools") { | 1115 source_set("simple_quic_tools") { |
| 1116 sources = [ | 1116 sources = [ |
| 1117 "tools/quic/chlo_extractor.cc", | 1117 "tools/quic/chlo_extractor.cc", |
| 1118 "tools/quic/chlo_extractor.h", | 1118 "tools/quic/chlo_extractor.h", |
| 1119 "tools/quic/quic_client_base.cc", | 1119 "tools/quic/quic_client_base.cc", |
| 1120 "tools/quic/quic_client_base.h", | 1120 "tools/quic/quic_client_base.h", |
| 1121 "tools/quic/quic_client_session.cc", | 1121 "tools/quic/quic_client_session.cc", |
| 1122 "tools/quic/quic_client_session.h", | 1122 "tools/quic/quic_client_session.h", |
| 1123 "tools/quic/quic_dispatcher.cc", | 1123 "tools/quic/quic_dispatcher.cc", |
| 1124 "tools/quic/quic_dispatcher.h", | 1124 "tools/quic/quic_dispatcher.h", |
| 1125 "tools/quic/quic_in_memory_cache.cc", | 1125 "tools/quic/quic_http_response_cache.cc", |
| 1126 "tools/quic/quic_in_memory_cache.h", | 1126 "tools/quic/quic_http_response_cache.h", |
| 1127 "tools/quic/quic_per_connection_packet_writer.cc", | 1127 "tools/quic/quic_per_connection_packet_writer.cc", |
| 1128 "tools/quic/quic_per_connection_packet_writer.h", | 1128 "tools/quic/quic_per_connection_packet_writer.h", |
| 1129 "tools/quic/quic_process_packet_interface.h", | 1129 "tools/quic/quic_process_packet_interface.h", |
| 1130 "tools/quic/quic_simple_client.cc", | 1130 "tools/quic/quic_simple_client.cc", |
| 1131 "tools/quic/quic_simple_client.h", | 1131 "tools/quic/quic_simple_client.h", |
| 1132 "tools/quic/quic_simple_crypto_server_stream_helper.cc", | 1132 "tools/quic/quic_simple_crypto_server_stream_helper.cc", |
| 1133 "tools/quic/quic_simple_crypto_server_stream_helper.h", | 1133 "tools/quic/quic_simple_crypto_server_stream_helper.h", |
| 1134 "tools/quic/quic_simple_dispatcher.cc", | 1134 "tools/quic/quic_simple_dispatcher.cc", |
| 1135 "tools/quic/quic_simple_dispatcher.h", | 1135 "tools/quic/quic_simple_dispatcher.h", |
| 1136 "tools/quic/quic_simple_per_connection_packet_writer.cc", | 1136 "tools/quic/quic_simple_per_connection_packet_writer.cc", |
| (...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2050 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | 2050 "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
| 2051 ] | 2051 ] |
| 2052 deps = [ | 2052 deps = [ |
| 2053 ":net_fuzzer_test_support", | 2053 ":net_fuzzer_test_support", |
| 2054 "//base", | 2054 "//base", |
| 2055 "//net", | 2055 "//net", |
| 2056 "//url", | 2056 "//url", |
| 2057 ] | 2057 ] |
| 2058 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2058 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 2059 } | 2059 } |
| OLD | NEW |