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

Side by Side Diff: net/net.gyp

Issue 111073003: Cleanup of QUIC stream classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | net/tools/quic/end_to_end_test.cc » ('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 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 1981 matching lines...) Expand 10 before | Expand all | Expand 10 after
1992 'sources': [ 1992 'sources': [
1993 'quic/quic_end_to_end_unittest.cc', 1993 'quic/quic_end_to_end_unittest.cc',
1994 'tools/balsa/balsa_frame_test.cc', 1994 'tools/balsa/balsa_frame_test.cc',
1995 'tools/balsa/balsa_headers_test.cc', 1995 'tools/balsa/balsa_headers_test.cc',
1996 'tools/quic/end_to_end_test.cc', 1996 'tools/quic/end_to_end_test.cc',
1997 'tools/quic/quic_client_session_test.cc', 1997 'tools/quic/quic_client_session_test.cc',
1998 'tools/quic/quic_dispatcher_test.cc', 1998 'tools/quic/quic_dispatcher_test.cc',
1999 'tools/quic/quic_epoll_clock_test.cc', 1999 'tools/quic/quic_epoll_clock_test.cc',
2000 'tools/quic/quic_epoll_connection_helper_test.cc', 2000 'tools/quic/quic_epoll_connection_helper_test.cc',
2001 'tools/quic/quic_in_memory_cache_test.cc', 2001 'tools/quic/quic_in_memory_cache_test.cc',
2002 'tools/quic/quic_reliable_client_stream_test.cc',
2003 'tools/quic/quic_reliable_server_stream_test.cc',
2004 'tools/quic/quic_server_session_test.cc', 2002 'tools/quic/quic_server_session_test.cc',
2005 'tools/quic/quic_server_test.cc', 2003 'tools/quic/quic_server_test.cc',
2004 'tools/quic/quic_spdy_client_stream_test.cc',
2006 'tools/quic/quic_spdy_server_stream_test.cc', 2005 'tools/quic/quic_spdy_server_stream_test.cc',
2007 'tools/quic/quic_time_wait_list_manager_test.cc', 2006 'tools/quic/quic_time_wait_list_manager_test.cc',
2008 'tools/quic/test_tools/http_message_test_utils.cc', 2007 'tools/quic/test_tools/http_message_test_utils.cc',
2009 'tools/quic/test_tools/http_message_test_utils.h', 2008 'tools/quic/test_tools/http_message_test_utils.h',
2010 'tools/quic/test_tools/mock_epoll_server.cc', 2009 'tools/quic/test_tools/mock_epoll_server.cc',
2011 'tools/quic/test_tools/mock_epoll_server.h', 2010 'tools/quic/test_tools/mock_epoll_server.h',
2012 'tools/quic/test_tools/mock_quic_dispatcher.cc', 2011 'tools/quic/test_tools/mock_quic_dispatcher.cc',
2013 'tools/quic/test_tools/mock_quic_dispatcher.h', 2012 'tools/quic/test_tools/mock_quic_dispatcher.h',
2014 'tools/quic/test_tools/packet_dropping_test_writer.cc', 2013 'tools/quic/test_tools/packet_dropping_test_writer.cc',
2015 'tools/quic/test_tools/packet_dropping_test_writer.h', 2014 'tools/quic/test_tools/packet_dropping_test_writer.h',
(...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after
2853 'tools/quic/quic_default_packet_writer.cc', 2852 'tools/quic/quic_default_packet_writer.cc',
2854 'tools/quic/quic_default_packet_writer.h', 2853 'tools/quic/quic_default_packet_writer.h',
2855 'tools/quic/quic_dispatcher.h', 2854 'tools/quic/quic_dispatcher.h',
2856 'tools/quic/quic_dispatcher.cc', 2855 'tools/quic/quic_dispatcher.cc',
2857 'tools/quic/quic_epoll_clock.cc', 2856 'tools/quic/quic_epoll_clock.cc',
2858 'tools/quic/quic_epoll_clock.h', 2857 'tools/quic/quic_epoll_clock.h',
2859 'tools/quic/quic_epoll_connection_helper.cc', 2858 'tools/quic/quic_epoll_connection_helper.cc',
2860 'tools/quic/quic_epoll_connection_helper.h', 2859 'tools/quic/quic_epoll_connection_helper.h',
2861 'tools/quic/quic_in_memory_cache.cc', 2860 'tools/quic/quic_in_memory_cache.cc',
2862 'tools/quic/quic_in_memory_cache.h', 2861 'tools/quic/quic_in_memory_cache.h',
2863 'tools/quic/quic_reliable_client_stream.cc',
2864 'tools/quic/quic_reliable_client_stream.h',
2865 'tools/quic/quic_reliable_server_stream.cc',
2866 'tools/quic/quic_reliable_server_stream.h',
2867 'tools/quic/quic_server.cc', 2862 'tools/quic/quic_server.cc',
2868 'tools/quic/quic_server.h', 2863 'tools/quic/quic_server.h',
2869 'tools/quic/quic_server_session.cc', 2864 'tools/quic/quic_server_session.cc',
2870 'tools/quic/quic_server_session.h', 2865 'tools/quic/quic_server_session.h',
2871 'tools/quic/quic_socket_utils.cc', 2866 'tools/quic/quic_socket_utils.cc',
2872 'tools/quic/quic_socket_utils.h', 2867 'tools/quic/quic_socket_utils.h',
2873 'tools/quic/quic_spdy_client_stream.cc', 2868 'tools/quic/quic_spdy_client_stream.cc',
2874 'tools/quic/quic_spdy_client_stream.h', 2869 'tools/quic/quic_spdy_client_stream.h',
2875 'tools/quic/quic_spdy_server_stream.cc', 2870 'tools/quic/quic_spdy_server_stream.cc',
2876 'tools/quic/quic_spdy_server_stream.h', 2871 'tools/quic/quic_spdy_server_stream.h',
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
3084 'net_unittests.isolate', 3079 'net_unittests.isolate',
3085 ], 3080 ],
3086 'sources': [ 3081 'sources': [
3087 'net_unittests.isolate', 3082 'net_unittests.isolate',
3088 ], 3083 ],
3089 }, 3084 },
3090 ], 3085 ],
3091 }], 3086 }],
3092 ], 3087 ],
3093 } 3088 }
OLDNEW
« no previous file with comments | « no previous file | net/tools/quic/end_to_end_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698