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

Side by Side Diff: net/net.gyp

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 | « net/BUILD.gn ('k') | net/quic/quic_server.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 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 'simple_quic_tools',
786 ], 786 ],
787 'sources': [ 787 'sources': [
788 'quic/quic_dispatcher.cc',
789 'quic/quic_dispatcher.h',
790 'quic/quic_per_connection_packet_writer.cc', 788 'quic/quic_per_connection_packet_writer.cc',
791 'quic/quic_per_connection_packet_writer.h', 789 'quic/quic_per_connection_packet_writer.h',
792 'quic/quic_server.cc', 790 'quic/quic_server.cc',
793 'quic/quic_server.h', 791 'quic/quic_server.h',
794 'quic/quic_server_packet_writer.cc', 792 'quic/quic_server_packet_writer.cc',
795 'quic/quic_server_packet_writer.h', 793 'quic/quic_server_packet_writer.h',
796 ], 794 ],
797 }, 795 },
798 { 796 {
799 'target_name': 'simple_quic_tools', 797 'target_name': 'simple_quic_tools',
800 'type': 'static_library', 798 'type': 'static_library',
801 'dependencies': [ 799 'dependencies': [
802 '../base/base.gyp:base', 800 '../base/base.gyp:base',
803 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 801 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
804 '../url/url.gyp:url_lib', 802 '../url/url.gyp:url_lib',
805 'net', 803 'net',
806 ], 804 ],
807 'sources': [ 805 'sources': [
806 'tools/quic/quic_client_session.cc',
807 'tools/quic/quic_client_session.h',
808 'tools/quic/quic_dispatcher.cc',
809 'tools/quic/quic_dispatcher.h',
808 'tools/quic/quic_in_memory_cache.cc', 810 'tools/quic/quic_in_memory_cache.cc',
809 'tools/quic/quic_in_memory_cache.h', 811 'tools/quic/quic_in_memory_cache.h',
812 'tools/quic/quic_per_connection_packet_writer.cc',
813 'tools/quic/quic_per_connection_packet_writer.h',
810 'tools/quic/quic_server_session.cc', 814 'tools/quic/quic_server_session.cc',
811 'tools/quic/quic_server_session.h', 815 'tools/quic/quic_server_session.h',
812 'tools/quic/quic_simple_client.cc', 816 'tools/quic/quic_simple_client.cc',
813 'tools/quic/quic_simple_client.h', 817 'tools/quic/quic_simple_client.h',
814 'tools/quic/quic_client_session.cc',
815 'tools/quic/quic_client_session.h',
816 'tools/quic/quic_spdy_client_stream.cc', 818 'tools/quic/quic_spdy_client_stream.cc',
817 'tools/quic/quic_spdy_client_stream.h', 819 'tools/quic/quic_spdy_client_stream.h',
818 'tools/quic/quic_spdy_server_stream.cc', 820 'tools/quic/quic_spdy_server_stream.cc',
819 'tools/quic/quic_spdy_server_stream.h', 821 'tools/quic/quic_spdy_server_stream.h',
820 'tools/quic/quic_time_wait_list_manager.cc', 822 'tools/quic/quic_time_wait_list_manager.cc',
821 'tools/quic/quic_time_wait_list_manager.h', 823 'tools/quic/quic_time_wait_list_manager.h',
822 'tools/quic/synchronous_host_resolver.cc', 824 'tools/quic/synchronous_host_resolver.cc',
823 'tools/quic/synchronous_host_resolver.h', 825 'tools/quic/synchronous_host_resolver.h',
824 ], 826 ],
825 }, 827 },
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1233 '../url/url.gyp:url_lib', 1235 '../url/url.gyp:url_lib',
1234 'balsa', 1236 'balsa',
1235 'epoll_server', 1237 'epoll_server',
1236 'net', 1238 'net',
1237 ], 1239 ],
1238 'sources': [ 1240 'sources': [
1239 'tools/quic/quic_client.cc', 1241 'tools/quic/quic_client.cc',
1240 'tools/quic/quic_client.h', 1242 'tools/quic/quic_client.h',
1241 'tools/quic/quic_default_packet_writer.cc', 1243 'tools/quic/quic_default_packet_writer.cc',
1242 'tools/quic/quic_default_packet_writer.h', 1244 'tools/quic/quic_default_packet_writer.h',
1243 'tools/quic/quic_dispatcher.cc',
1244 'tools/quic/quic_dispatcher.h',
1245 'tools/quic/quic_epoll_clock.cc', 1245 'tools/quic/quic_epoll_clock.cc',
1246 'tools/quic/quic_epoll_clock.h', 1246 'tools/quic/quic_epoll_clock.h',
1247 'tools/quic/quic_epoll_connection_helper.cc', 1247 'tools/quic/quic_epoll_connection_helper.cc',
1248 'tools/quic/quic_epoll_connection_helper.h', 1248 'tools/quic/quic_epoll_connection_helper.h',
1249 'tools/quic/quic_packet_reader.cc', 1249 'tools/quic/quic_packet_reader.cc',
1250 'tools/quic/quic_packet_reader.h', 1250 'tools/quic/quic_packet_reader.h',
1251 'tools/quic/quic_packet_writer_wrapper.cc', 1251 'tools/quic/quic_packet_writer_wrapper.cc',
1252 'tools/quic/quic_packet_writer_wrapper.h', 1252 'tools/quic/quic_packet_writer_wrapper.h',
1253 'tools/quic/quic_per_connection_packet_writer.cc',
1254 'tools/quic/quic_per_connection_packet_writer.h',
1255 'tools/quic/quic_server.cc', 1253 'tools/quic/quic_server.cc',
1256 'tools/quic/quic_server.h', 1254 'tools/quic/quic_server.h',
1257 'tools/quic/quic_socket_utils.cc', 1255 'tools/quic/quic_socket_utils.cc',
1258 'tools/quic/quic_socket_utils.h', 1256 'tools/quic/quic_socket_utils.h',
1259 ], 1257 ],
1260 }, 1258 },
1261 { 1259 {
1262 'target_name': 'quic_client', 1260 'target_name': 'quic_client',
1263 'type': 'executable', 1261 'type': 'executable',
1264 'dependencies': [ 1262 'dependencies': [
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1511 '../build/isolate.gypi', 1509 '../build/isolate.gypi',
1512 ], 1510 ],
1513 'sources': [ 1511 'sources': [
1514 'net_unittests.isolate', 1512 'net_unittests.isolate',
1515 ], 1513 ],
1516 }, 1514 },
1517 ], 1515 ],
1518 }], 1516 }],
1519 ], 1517 ],
1520 } 1518 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/quic/quic_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698