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

Side by Side Diff: net/BUILD.gn

Issue 1031243002: Unify the QUIC dispatcher and make the QuicServer work. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: QuicChromeServerDispatchPacketTest Created 5 years, 8 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 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_default_packet_writer.cc", 1146 "tools/quic/quic_default_packet_writer.cc",
1147 "tools/quic/quic_default_packet_writer.h", 1147 "tools/quic/quic_default_packet_writer.h",
1148 "tools/quic/quic_dispatcher.cc",
1149 "tools/quic/quic_dispatcher.h",
1150 "tools/quic/quic_epoll_clock.cc", 1148 "tools/quic/quic_epoll_clock.cc",
1151 "tools/quic/quic_epoll_clock.h", 1149 "tools/quic/quic_epoll_clock.h",
1152 "tools/quic/quic_epoll_connection_helper.cc", 1150 "tools/quic/quic_epoll_connection_helper.cc",
1153 "tools/quic/quic_epoll_connection_helper.h", 1151 "tools/quic/quic_epoll_connection_helper.h",
1154 "tools/quic/quic_packet_reader.cc", 1152 "tools/quic/quic_packet_reader.cc",
1155 "tools/quic/quic_packet_reader.h", 1153 "tools/quic/quic_packet_reader.h",
1156 "tools/quic/quic_packet_writer_wrapper.cc", 1154 "tools/quic/quic_packet_writer_wrapper.cc",
1157 "tools/quic/quic_packet_writer_wrapper.h", 1155 "tools/quic/quic_packet_writer_wrapper.h",
1158 "tools/quic/quic_per_connection_packet_writer.cc",
1159 "tools/quic/quic_per_connection_packet_writer.h",
1160 "tools/quic/quic_server.cc", 1156 "tools/quic/quic_server.cc",
1161 "tools/quic/quic_server.h", 1157 "tools/quic/quic_server.h",
1162 "tools/quic/quic_socket_utils.cc", 1158 "tools/quic/quic_socket_utils.cc",
1163 "tools/quic/quic_socket_utils.h", 1159 "tools/quic/quic_socket_utils.h",
1164 ] 1160 ]
1165 deps = [ 1161 deps = [
1166 ":balsa", 1162 ":balsa",
1167 ":epoll_server", 1163 ":epoll_server",
1168 ":net", 1164 ":net",
1169 "//base", 1165 "//base",
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
1222 ":net", 1218 ":net",
1223 "//base", 1219 "//base",
1224 ] 1220 ]
1225 } 1221 }
1226 } 1222 }
1227 1223
1228 # This source_set is defined even if no build targets need it, 1224 # This source_set is defined even if no build targets need it,
1229 # such as when all dependees are not buildable for the chosen OS. 1225 # such as when all dependees are not buildable for the chosen OS.
1230 source_set("quic_tools") { 1226 source_set("quic_tools") {
1231 sources = [ 1227 sources = [
1232 "quic/quic_dispatcher.cc",
1233 "quic/quic_dispatcher.h",
1234 "quic/quic_per_connection_packet_writer.cc", 1228 "quic/quic_per_connection_packet_writer.cc",
1235 "quic/quic_per_connection_packet_writer.h", 1229 "quic/quic_per_connection_packet_writer.h",
1236 "quic/quic_server.cc", 1230 "quic/quic_server.cc",
1237 "quic/quic_server.h", 1231 "quic/quic_server.h",
1238 "quic/quic_server_packet_writer.cc", 1232 "quic/quic_server_packet_writer.cc",
1239 "quic/quic_server_packet_writer.h", 1233 "quic/quic_server_packet_writer.h",
1240 ] 1234 ]
1241 deps = [ 1235 deps = [
1242 ":net", 1236 ":net",
1243 ":simple_quic_tools", 1237 ":simple_quic_tools",
1244 "//base", 1238 "//base",
1245 "//base/third_party/dynamic_annotations", 1239 "//base/third_party/dynamic_annotations",
1246 "//url", 1240 "//url",
1247 ] 1241 ]
1248 } 1242 }
1249 source_set("simple_quic_tools") { 1243 source_set("simple_quic_tools") {
1250 sources = [ 1244 sources = [
1251 "tools/quic/quic_client_session.cc", 1245 "tools/quic/quic_client_session.cc",
1252 "tools/quic/quic_client_session.h", 1246 "tools/quic/quic_client_session.h",
1247 "tools/quic/quic_dispatcher.cc",
1248 "tools/quic/quic_dispatcher.h",
1253 "tools/quic/quic_in_memory_cache.cc", 1249 "tools/quic/quic_in_memory_cache.cc",
1254 "tools/quic/quic_in_memory_cache.h", 1250 "tools/quic/quic_in_memory_cache.h",
1251 "tools/quic/quic_per_connection_packet_writer.cc",
1252 "tools/quic/quic_per_connection_packet_writer.h",
1255 "tools/quic/quic_server_session.cc", 1253 "tools/quic/quic_server_session.cc",
1256 "tools/quic/quic_server_session.h", 1254 "tools/quic/quic_server_session.h",
1257 "tools/quic/quic_simple_client.cc", 1255 "tools/quic/quic_simple_client.cc",
1258 "tools/quic/quic_simple_client.h", 1256 "tools/quic/quic_simple_client.h",
1259 "tools/quic/quic_spdy_client_stream.cc", 1257 "tools/quic/quic_spdy_client_stream.cc",
1260 "tools/quic/quic_spdy_client_stream.h", 1258 "tools/quic/quic_spdy_client_stream.h",
1261 "tools/quic/quic_spdy_server_stream.cc", 1259 "tools/quic/quic_spdy_server_stream.cc",
1262 "tools/quic/quic_spdy_server_stream.h", 1260 "tools/quic/quic_spdy_server_stream.h",
1263 "tools/quic/quic_time_wait_list_manager.cc", 1261 "tools/quic/quic_time_wait_list_manager.cc",
1264 "tools/quic/quic_time_wait_list_manager.h", 1262 "tools/quic/quic_time_wait_list_manager.h",
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
1632 } else { 1630 } else {
1633 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1631 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1634 } 1632 }
1635 1633
1636 if (is_win && icu_use_data_file) { 1634 if (is_win && icu_use_data_file) {
1637 # This is needed to trigger the dll copy step on windows. 1635 # This is needed to trigger the dll copy step on windows.
1638 # TODO(mark): Specifying this here shouldn't be necessary. 1636 # TODO(mark): Specifying this here shouldn't be necessary.
1639 deps += [ "//third_party/icu:icudata" ] 1637 deps += [ "//third_party/icu:icudata" ]
1640 } 1638 }
1641 } 1639 }
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