Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: net/BUILD.gn

Issue 1035533006: Unify the QUIC client classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ssize_t Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/module_args/v8.gni") 8 import("//build/module_args/v8.gni")
9 import("//url/config.gni") 9 import("//url/config.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 1125 matching lines...) Expand 10 before | Expand all | Expand 10 after
1136 ":flip_in_mem_edsm_server_base", 1136 ":flip_in_mem_edsm_server_base",
1137 ":net", 1137 ":net",
1138 "//base", 1138 "//base",
1139 ] 1139 ]
1140 } 1140 }
1141 1141
1142 source_set("quic_base") { 1142 source_set("quic_base") {
1143 sources = [ 1143 sources = [
1144 "tools/quic/quic_client.cc", 1144 "tools/quic/quic_client.cc",
1145 "tools/quic/quic_client.h", 1145 "tools/quic/quic_client.h",
1146 "tools/quic/quic_client_session.cc",
1147 "tools/quic/quic_client_session.h",
1148 "tools/quic/quic_default_packet_writer.cc", 1146 "tools/quic/quic_default_packet_writer.cc",
1149 "tools/quic/quic_default_packet_writer.h", 1147 "tools/quic/quic_default_packet_writer.h",
1150 "tools/quic/quic_dispatcher.cc", 1148 "tools/quic/quic_dispatcher.cc",
1151 "tools/quic/quic_dispatcher.h", 1149 "tools/quic/quic_dispatcher.h",
1152 "tools/quic/quic_epoll_clock.cc", 1150 "tools/quic/quic_epoll_clock.cc",
1153 "tools/quic/quic_epoll_clock.h", 1151 "tools/quic/quic_epoll_clock.h",
1154 "tools/quic/quic_epoll_connection_helper.cc", 1152 "tools/quic/quic_epoll_connection_helper.cc",
1155 "tools/quic/quic_epoll_connection_helper.h", 1153 "tools/quic/quic_epoll_connection_helper.h",
1156 "tools/quic/quic_in_memory_cache.cc", 1154 "tools/quic/quic_in_memory_cache.cc",
1157 "tools/quic/quic_in_memory_cache.h", 1155 "tools/quic/quic_in_memory_cache.h",
1158 "tools/quic/quic_packet_reader.cc", 1156 "tools/quic/quic_packet_reader.cc",
1159 "tools/quic/quic_packet_reader.h", 1157 "tools/quic/quic_packet_reader.h",
1160 "tools/quic/quic_packet_writer_wrapper.cc", 1158 "tools/quic/quic_packet_writer_wrapper.cc",
1161 "tools/quic/quic_packet_writer_wrapper.h", 1159 "tools/quic/quic_packet_writer_wrapper.h",
1162 "tools/quic/quic_per_connection_packet_writer.cc", 1160 "tools/quic/quic_per_connection_packet_writer.cc",
1163 "tools/quic/quic_per_connection_packet_writer.h", 1161 "tools/quic/quic_per_connection_packet_writer.h",
1164 "tools/quic/quic_server.cc", 1162 "tools/quic/quic_server.cc",
1165 "tools/quic/quic_server.h", 1163 "tools/quic/quic_server.h",
1166 "tools/quic/quic_server_session.cc", 1164 "tools/quic/quic_server_session.cc",
1167 "tools/quic/quic_server_session.h", 1165 "tools/quic/quic_server_session.h",
1168 "tools/quic/quic_socket_utils.cc", 1166 "tools/quic/quic_socket_utils.cc",
1169 "tools/quic/quic_socket_utils.h", 1167 "tools/quic/quic_socket_utils.h",
1170 "tools/quic/quic_spdy_client_stream.cc",
1171 "tools/quic/quic_spdy_client_stream.h",
1172 "tools/quic/quic_spdy_server_stream.cc", 1168 "tools/quic/quic_spdy_server_stream.cc",
1173 "tools/quic/quic_spdy_server_stream.h", 1169 "tools/quic/quic_spdy_server_stream.h",
1174 "tools/quic/quic_time_wait_list_manager.cc", 1170 "tools/quic/quic_time_wait_list_manager.cc",
1175 "tools/quic/quic_time_wait_list_manager.h", 1171 "tools/quic/quic_time_wait_list_manager.h",
1176 ] 1172 ]
1177 deps = [ 1173 deps = [
1178 ":balsa", 1174 ":balsa",
1179 ":epoll_server", 1175 ":epoll_server",
1180 ":net", 1176 ":net",
1181 "//base", 1177 "//base",
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
1260 ] 1256 ]
1261 deps = [ 1257 deps = [
1262 ":net", 1258 ":net",
1263 "//base", 1259 "//base",
1264 "//base/third_party/dynamic_annotations", 1260 "//base/third_party/dynamic_annotations",
1265 "//url", 1261 "//url",
1266 ] 1262 ]
1267 } 1263 }
1268 source_set("simple_quic_tools") { 1264 source_set("simple_quic_tools") {
1269 sources = [ 1265 sources = [
1266 "tools/quic/quic_client_session.cc",
1267 "tools/quic/quic_client_session.h",
1270 "tools/quic/quic_simple_client.cc", 1268 "tools/quic/quic_simple_client.cc",
1271 "tools/quic/quic_simple_client.h", 1269 "tools/quic/quic_simple_client.h",
1272 "tools/quic/quic_simple_client_session.cc", 1270 "tools/quic/quic_spdy_client_stream.cc",
1273 "tools/quic/quic_simple_client_session.h", 1271 "tools/quic/quic_spdy_client_stream.h",
1274 "tools/quic/quic_simple_client_stream.cc",
1275 "tools/quic/quic_simple_client_stream.h",
1276 "tools/quic/synchronous_host_resolver.cc", 1272 "tools/quic/synchronous_host_resolver.cc",
1277 "tools/quic/synchronous_host_resolver.h", 1273 "tools/quic/synchronous_host_resolver.h",
1278 ] 1274 ]
1279 deps = [ 1275 deps = [
1280 ":net", 1276 ":net",
1281 "//base", 1277 "//base",
1282 "//base/third_party/dynamic_annotations", 1278 "//base/third_party/dynamic_annotations",
1283 "//url", 1279 "//url",
1284 ] 1280 ]
1285 } 1281 }
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
1642 } else { 1638 } else {
1643 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1639 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1644 } 1640 }
1645 1641
1646 if (is_win && icu_use_data_file) { 1642 if (is_win && icu_use_data_file) {
1647 # This is needed to trigger the dll copy step on windows. 1643 # This is needed to trigger the dll copy step on windows.
1648 # TODO(mark): Specifying this here shouldn't be necessary. 1644 # TODO(mark): Specifying this here shouldn't be necessary.
1649 deps += [ "//third_party/icu:icudata" ] 1645 deps += [ "//third_party/icu:icudata" ]
1650 } 1646 }
1651 } 1647 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698