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

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: Fix iOS 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') | net/tools/quic/quic_dispatcher.h » ('J')
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 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after
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", 1146 "tools/quic/quic_client_session.cc",
1147 "tools/quic/quic_client_session.h", 1147 "tools/quic/quic_client_session.h",
1148 "tools/quic/quic_default_packet_writer.cc", 1148 "tools/quic/quic_default_packet_writer.cc",
1149 "tools/quic/quic_default_packet_writer.h", 1149 "tools/quic/quic_default_packet_writer.h",
1150 "tools/quic/quic_dispatcher.cc",
1151 "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_packet_reader.cc", 1154 "tools/quic/quic_packet_reader.cc",
1157 "tools/quic/quic_packet_reader.h", 1155 "tools/quic/quic_packet_reader.h",
1158 "tools/quic/quic_packet_writer_wrapper.cc", 1156 "tools/quic/quic_packet_writer_wrapper.cc",
1159 "tools/quic/quic_packet_writer_wrapper.h", 1157 "tools/quic/quic_packet_writer_wrapper.h",
1160 "tools/quic/quic_per_connection_packet_writer.cc",
1161 "tools/quic/quic_per_connection_packet_writer.h",
1162 "tools/quic/quic_server.cc", 1158 "tools/quic/quic_server.cc",
1163 "tools/quic/quic_server.h", 1159 "tools/quic/quic_server.h",
1164 "tools/quic/quic_socket_utils.cc", 1160 "tools/quic/quic_socket_utils.cc",
1165 "tools/quic/quic_socket_utils.h", 1161 "tools/quic/quic_socket_utils.h",
1166 "tools/quic/quic_spdy_client_stream.cc", 1162 "tools/quic/quic_spdy_client_stream.cc",
1167 "tools/quic/quic_spdy_client_stream.h", 1163 "tools/quic/quic_spdy_client_stream.h",
1168 ] 1164 ]
1169 deps = [ 1165 deps = [
1170 ":balsa", 1166 ":balsa",
1171 ":epoll_server", 1167 ":epoll_server",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
1226 ":net", 1222 ":net",
1227 "//base", 1223 "//base",
1228 ] 1224 ]
1229 } 1225 }
1230 } 1226 }
1231 1227
1232 # This source_set is defined even if no build targets need it, 1228 # This source_set is defined even if no build targets need it,
1233 # such as when all dependees are not buildable for the chosen OS. 1229 # such as when all dependees are not buildable for the chosen OS.
1234 source_set("quic_tools") { 1230 source_set("quic_tools") {
1235 sources = [ 1231 sources = [
1236 "quic/quic_dispatcher.cc",
1237 "quic/quic_dispatcher.h",
1238 "quic/quic_per_connection_packet_writer.cc", 1232 "quic/quic_per_connection_packet_writer.cc",
1239 "quic/quic_per_connection_packet_writer.h", 1233 "quic/quic_per_connection_packet_writer.h",
1240 "quic/quic_server.cc", 1234 "quic/quic_server.cc",
1241 "quic/quic_server.h", 1235 "quic/quic_server.h",
1242 "quic/quic_server_packet_writer.cc", 1236 "quic/quic_server_packet_writer.cc",
1243 "quic/quic_server_packet_writer.h", 1237 "quic/quic_server_packet_writer.h",
1244 ] 1238 ]
1245 deps = [ 1239 deps = [
1246 ":net", 1240 ":net",
1247 "//base", 1241 "//base",
1248 "//base/third_party/dynamic_annotations", 1242 "//base/third_party/dynamic_annotations",
1249 "//url", 1243 "//url",
1250 ] 1244 ]
1251 } 1245 }
1252 source_set("simple_quic_tools") { 1246 source_set("simple_quic_tools") {
1253 sources = [ 1247 sources = [
1248 "tools/quic/quic_dispatcher.cc",
1249 "tools/quic/quic_dispatcher.h",
1254 "tools/quic/quic_in_memory_cache.cc", 1250 "tools/quic/quic_in_memory_cache.cc",
1255 "tools/quic/quic_in_memory_cache.h", 1251 "tools/quic/quic_in_memory_cache.h",
1252 "tools/quic/quic_per_connection_packet_writer.cc",
1253 "tools/quic/quic_per_connection_packet_writer.h",
1256 "tools/quic/quic_server_session.cc", 1254 "tools/quic/quic_server_session.cc",
1257 "tools/quic/quic_server_session.h", 1255 "tools/quic/quic_server_session.h",
1258 "tools/quic/quic_simple_client.cc", 1256 "tools/quic/quic_simple_client.cc",
1259 "tools/quic/quic_simple_client.h", 1257 "tools/quic/quic_simple_client.h",
1260 "tools/quic/quic_simple_client_session.cc", 1258 "tools/quic/quic_simple_client_session.cc",
1261 "tools/quic/quic_simple_client_session.h", 1259 "tools/quic/quic_simple_client_session.h",
1262 "tools/quic/quic_simple_client_stream.cc", 1260 "tools/quic/quic_simple_client_stream.cc",
1263 "tools/quic/quic_simple_client_stream.h", 1261 "tools/quic/quic_simple_client_stream.h",
1264 "tools/quic/quic_spdy_server_stream.cc", 1262 "tools/quic/quic_spdy_server_stream.cc",
1265 "tools/quic/quic_spdy_server_stream.h", 1263 "tools/quic/quic_spdy_server_stream.h",
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
1635 } else { 1633 } else {
1636 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1634 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1637 } 1635 }
1638 1636
1639 if (is_win && icu_use_data_file) { 1637 if (is_win && icu_use_data_file) {
1640 # This is needed to trigger the dll copy step on windows. 1638 # This is needed to trigger the dll copy step on windows.
1641 # TODO(mark): Specifying this here shouldn't be necessary. 1639 # TODO(mark): Specifying this here shouldn't be necessary.
1642 deps += [ "//third_party/icu:icudata" ] 1640 deps += [ "//third_party/icu:icudata" ]
1643 } 1641 }
1644 } 1642 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | net/tools/quic/quic_dispatcher.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698