| 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 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1142 "tools/quic/quic_simple_server_packet_writer.cc", | 1142 "tools/quic/quic_simple_server_packet_writer.cc", |
| 1143 "tools/quic/quic_simple_server_packet_writer.h", | 1143 "tools/quic/quic_simple_server_packet_writer.h", |
| 1144 "tools/quic/quic_simple_server_session.cc", | 1144 "tools/quic/quic_simple_server_session.cc", |
| 1145 "tools/quic/quic_simple_server_session.h", | 1145 "tools/quic/quic_simple_server_session.h", |
| 1146 "tools/quic/quic_simple_server_session_helper.cc", | 1146 "tools/quic/quic_simple_server_session_helper.cc", |
| 1147 "tools/quic/quic_simple_server_session_helper.h", | 1147 "tools/quic/quic_simple_server_session_helper.h", |
| 1148 "tools/quic/quic_simple_server_stream.cc", | 1148 "tools/quic/quic_simple_server_stream.cc", |
| 1149 "tools/quic/quic_simple_server_stream.h", | 1149 "tools/quic/quic_simple_server_stream.h", |
| 1150 "tools/quic/quic_spdy_client_stream.cc", | 1150 "tools/quic/quic_spdy_client_stream.cc", |
| 1151 "tools/quic/quic_spdy_client_stream.h", | 1151 "tools/quic/quic_spdy_client_stream.h", |
| 1152 "tools/quic/quic_spdy_server_stream_base.cc", |
| 1153 "tools/quic/quic_spdy_server_stream_base.h", |
| 1152 "tools/quic/quic_time_wait_list_manager.cc", | 1154 "tools/quic/quic_time_wait_list_manager.cc", |
| 1153 "tools/quic/quic_time_wait_list_manager.h", | 1155 "tools/quic/quic_time_wait_list_manager.h", |
| 1154 "tools/quic/stateless_rejector.cc", | 1156 "tools/quic/stateless_rejector.cc", |
| 1155 "tools/quic/stateless_rejector.h", | 1157 "tools/quic/stateless_rejector.h", |
| 1156 "tools/quic/synchronous_host_resolver.cc", | 1158 "tools/quic/synchronous_host_resolver.cc", |
| 1157 "tools/quic/synchronous_host_resolver.h", | 1159 "tools/quic/synchronous_host_resolver.h", |
| 1158 ] | 1160 ] |
| 1159 deps = [ | 1161 deps = [ |
| 1160 ":net", | 1162 ":net", |
| 1161 "//base", | 1163 "//base", |
| (...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2053 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | 2055 "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
| 2054 ] | 2056 ] |
| 2055 deps = [ | 2057 deps = [ |
| 2056 ":net_fuzzer_test_support", | 2058 ":net_fuzzer_test_support", |
| 2057 "//base", | 2059 "//base", |
| 2058 "//net", | 2060 "//net", |
| 2059 "//url", | 2061 "//url", |
| 2060 ] | 2062 ] |
| 2061 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2063 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 2062 } | 2064 } |
| OLD | NEW |