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 1144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1155 "tools/quic/synchronous_host_resolver.h", | 1155 "tools/quic/synchronous_host_resolver.h", |
1156 ] | 1156 ] |
1157 deps = [ | 1157 deps = [ |
1158 ":net", | 1158 ":net", |
1159 "//base", | 1159 "//base", |
1160 "//base/third_party/dynamic_annotations", | 1160 "//base/third_party/dynamic_annotations", |
1161 "//url", | 1161 "//url", |
1162 ] | 1162 ] |
1163 } | 1163 } |
1164 | 1164 |
| 1165 source_set("traffic_annotation_header") { |
| 1166 sources = [ |
| 1167 "net/traffic_annotation/network_traffic_annotation.h", |
| 1168 ] |
| 1169 deps = [] |
| 1170 } |
| 1171 |
1165 if (!is_ios) { | 1172 if (!is_ios) { |
1166 executable("quic_client") { | 1173 executable("quic_client") { |
1167 sources = [ | 1174 sources = [ |
1168 "tools/quic/quic_simple_client_bin.cc", | 1175 "tools/quic/quic_simple_client_bin.cc", |
1169 ] | 1176 ] |
1170 deps = [ | 1177 deps = [ |
1171 ":net", | 1178 ":net", |
1172 ":simple_quic_tools", | 1179 ":simple_quic_tools", |
1173 "//base", | 1180 "//base", |
1174 "//build/config/sanitizers:deps", | 1181 "//build/config/sanitizers:deps", |
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2036 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | 2043 "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
2037 ] | 2044 ] |
2038 deps = [ | 2045 deps = [ |
2039 ":net_fuzzer_test_support", | 2046 ":net_fuzzer_test_support", |
2040 "//base", | 2047 "//base", |
2041 "//net", | 2048 "//net", |
2042 "//url", | 2049 "//url", |
2043 ] | 2050 ] |
2044 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2051 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
2045 } | 2052 } |
OLD | NEW |