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