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

Side by Side Diff: net/net.gyp

Issue 1032903002: Unify various QUIC server classes in net/quic and net/tools/quic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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 | « net/BUILD.gn ('k') | net/quic/quic_dispatcher.h » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 764 matching lines...) Expand 10 before | Expand all | Expand 10 after
775 { 775 {
776 # This is a temporary target which will be merged into 'net' once the 776 # This is a temporary target which will be merged into 'net' once the
777 # dependency on balsa is eliminated and the classes are actually used. 777 # dependency on balsa is eliminated and the classes are actually used.
778 'target_name': 'quic_tools', 778 'target_name': 'quic_tools',
779 'type': 'static_library', 779 'type': 'static_library',
780 'dependencies': [ 780 'dependencies': [
781 '../base/base.gyp:base', 781 '../base/base.gyp:base',
782 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 782 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
783 '../url/url.gyp:url_lib', 783 '../url/url.gyp:url_lib',
784 'net', 784 'net',
785 'simple_quic_tools',
785 ], 786 ],
786 'sources': [ 787 'sources': [
787 'quic/quic_dispatcher.cc', 788 'quic/quic_dispatcher.cc',
788 'quic/quic_dispatcher.h', 789 'quic/quic_dispatcher.h',
789 'quic/quic_in_memory_cache.cc',
790 'quic/quic_in_memory_cache.h',
791 'quic/quic_per_connection_packet_writer.cc', 790 'quic/quic_per_connection_packet_writer.cc',
792 'quic/quic_per_connection_packet_writer.h', 791 'quic/quic_per_connection_packet_writer.h',
793 'quic/quic_server.cc', 792 'quic/quic_server.cc',
794 'quic/quic_server.h', 793 'quic/quic_server.h',
795 'quic/quic_server_packet_writer.cc', 794 'quic/quic_server_packet_writer.cc',
796 'quic/quic_server_packet_writer.h', 795 'quic/quic_server_packet_writer.h',
797 'quic/quic_server_session.cc',
798 'quic/quic_server_session.h',
799 'quic/quic_spdy_server_stream.cc',
800 'quic/quic_spdy_server_stream.h',
801 'quic/quic_time_wait_list_manager.cc',
802 'quic/quic_time_wait_list_manager.h',
803 ], 796 ],
804 }, 797 },
805 { 798 {
806 'target_name': 'simple_quic_tools', 799 'target_name': 'simple_quic_tools',
807 'type': 'static_library', 800 'type': 'static_library',
808 'dependencies': [ 801 'dependencies': [
809 '../base/base.gyp:base', 802 '../base/base.gyp:base',
810 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 803 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
811 '../url/url.gyp:url_lib', 804 '../url/url.gyp:url_lib',
812 'net', 805 'net',
813 ], 806 ],
814 'sources': [ 807 'sources': [
808 'tools/quic/quic_in_memory_cache.cc',
809 'tools/quic/quic_in_memory_cache.h',
810 'tools/quic/quic_server_session.cc',
811 'tools/quic/quic_server_session.h',
815 'tools/quic/quic_simple_client.cc', 812 'tools/quic/quic_simple_client.cc',
816 'tools/quic/quic_simple_client.h', 813 'tools/quic/quic_simple_client.h',
817 'tools/quic/quic_client_session.cc', 814 'tools/quic/quic_client_session.cc',
818 'tools/quic/quic_client_session.h', 815 'tools/quic/quic_client_session.h',
819 'tools/quic/quic_spdy_client_stream.cc', 816 'tools/quic/quic_spdy_client_stream.cc',
820 'tools/quic/quic_spdy_client_stream.h', 817 'tools/quic/quic_spdy_client_stream.h',
818 'tools/quic/quic_spdy_server_stream.cc',
819 'tools/quic/quic_spdy_server_stream.h',
820 'tools/quic/quic_time_wait_list_manager.cc',
821 'tools/quic/quic_time_wait_list_manager.h',
821 'tools/quic/synchronous_host_resolver.cc', 822 'tools/quic/synchronous_host_resolver.cc',
822 'tools/quic/synchronous_host_resolver.h', 823 'tools/quic/synchronous_host_resolver.h',
823 ], 824 ],
824 }, 825 },
825 ], 826 ],
826 'conditions': [ 827 'conditions': [
827 ['use_v8_in_net == 1', { 828 ['use_v8_in_net == 1', {
828 'targets': [ 829 'targets': [
829 { 830 {
830 'target_name': 'net_with_v8', 831 'target_name': 'net_with_v8',
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 'tools/quic/quic_client.cc', 1239 'tools/quic/quic_client.cc',
1239 'tools/quic/quic_client.h', 1240 'tools/quic/quic_client.h',
1240 'tools/quic/quic_default_packet_writer.cc', 1241 'tools/quic/quic_default_packet_writer.cc',
1241 'tools/quic/quic_default_packet_writer.h', 1242 'tools/quic/quic_default_packet_writer.h',
1242 'tools/quic/quic_dispatcher.cc', 1243 'tools/quic/quic_dispatcher.cc',
1243 'tools/quic/quic_dispatcher.h', 1244 'tools/quic/quic_dispatcher.h',
1244 'tools/quic/quic_epoll_clock.cc', 1245 'tools/quic/quic_epoll_clock.cc',
1245 'tools/quic/quic_epoll_clock.h', 1246 'tools/quic/quic_epoll_clock.h',
1246 'tools/quic/quic_epoll_connection_helper.cc', 1247 'tools/quic/quic_epoll_connection_helper.cc',
1247 'tools/quic/quic_epoll_connection_helper.h', 1248 'tools/quic/quic_epoll_connection_helper.h',
1248 'tools/quic/quic_in_memory_cache.cc',
1249 'tools/quic/quic_in_memory_cache.h',
1250 'tools/quic/quic_packet_reader.cc', 1249 'tools/quic/quic_packet_reader.cc',
1251 'tools/quic/quic_packet_reader.h', 1250 'tools/quic/quic_packet_reader.h',
1252 'tools/quic/quic_packet_writer_wrapper.cc', 1251 'tools/quic/quic_packet_writer_wrapper.cc',
1253 'tools/quic/quic_packet_writer_wrapper.h', 1252 'tools/quic/quic_packet_writer_wrapper.h',
1254 'tools/quic/quic_per_connection_packet_writer.cc', 1253 'tools/quic/quic_per_connection_packet_writer.cc',
1255 'tools/quic/quic_per_connection_packet_writer.h', 1254 'tools/quic/quic_per_connection_packet_writer.h',
1256 'tools/quic/quic_server.cc', 1255 'tools/quic/quic_server.cc',
1257 'tools/quic/quic_server.h', 1256 'tools/quic/quic_server.h',
1258 'tools/quic/quic_server_session.cc',
1259 'tools/quic/quic_server_session.h',
1260 'tools/quic/quic_socket_utils.cc', 1257 'tools/quic/quic_socket_utils.cc',
1261 'tools/quic/quic_socket_utils.h', 1258 'tools/quic/quic_socket_utils.h',
1262 'tools/quic/quic_spdy_server_stream.cc',
1263 'tools/quic/quic_spdy_server_stream.h',
1264 'tools/quic/quic_time_wait_list_manager.cc',
1265 'tools/quic/quic_time_wait_list_manager.h',
1266 ], 1259 ],
1267 }, 1260 },
1268 { 1261 {
1269 'target_name': 'quic_client', 1262 'target_name': 'quic_client',
1270 'type': 'executable', 1263 'type': 'executable',
1271 'dependencies': [ 1264 'dependencies': [
1272 '../base/base.gyp:base', 1265 '../base/base.gyp:base',
1273 'net', 1266 'net',
1274 'quic_base', 1267 'quic_base',
1275 'simple_quic_tools', 1268 'simple_quic_tools',
1276 ], 1269 ],
1277 'sources': [ 1270 'sources': [
1278 'tools/quic/quic_client_bin.cc', 1271 'tools/quic/quic_client_bin.cc',
1279 ], 1272 ],
1280 }, 1273 },
1281 ] 1274 ]
1282 }], 1275 }],
1283 ['os_posix == 1 and OS != "ios" and OS != "android"', { 1276 ['os_posix == 1 and OS != "ios" and OS != "android"', {
1284 'targets': [ 1277 'targets': [
1285 { 1278 {
1286 'target_name': 'quic_server', 1279 'target_name': 'quic_server',
1287 'type': 'executable', 1280 'type': 'executable',
1288 'dependencies': [ 1281 'dependencies': [
1289 '../base/base.gyp:base', 1282 '../base/base.gyp:base',
1290 'net', 1283 'net',
1291 'quic_tools', 1284 'quic_tools',
1285 'simple_quic_tools',
1292 ], 1286 ],
1293 'sources': [ 1287 'sources': [
1294 'quic/quic_server_bin.cc', 1288 'quic/quic_server_bin.cc',
1295 ], 1289 ],
1296 }, 1290 },
1297 ] 1291 ]
1298 }], 1292 }],
1299 ['OS=="android"', { 1293 ['OS=="android"', {
1300 'targets': [ 1294 'targets': [
1301 { # The same target as 'net', but with smaller binary size due to 1295 { # The same target as 'net', but with smaller binary size due to
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
1517 '../build/isolate.gypi', 1511 '../build/isolate.gypi',
1518 ], 1512 ],
1519 'sources': [ 1513 'sources': [
1520 'net_unittests.isolate', 1514 'net_unittests.isolate',
1521 ], 1515 ],
1522 }, 1516 },
1523 ], 1517 ],
1524 }], 1518 }],
1525 ], 1519 ],
1526 } 1520 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/quic/quic_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698