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

Side by Side Diff: net/net.gyp

Issue 1035533006: Unify the QUIC client classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ssize_t 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 | « net/BUILD.gn ('k') | net/net.gypi » ('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 796 matching lines...) Expand 10 before | Expand all | Expand 10 after
807 'type': 'static_library', 807 'type': 'static_library',
808 'dependencies': [ 808 'dependencies': [
809 '../base/base.gyp:base', 809 '../base/base.gyp:base',
810 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 810 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
811 '../url/url.gyp:url_lib', 811 '../url/url.gyp:url_lib',
812 'net', 812 'net',
813 ], 813 ],
814 'sources': [ 814 'sources': [
815 'tools/quic/quic_simple_client.cc', 815 'tools/quic/quic_simple_client.cc',
816 'tools/quic/quic_simple_client.h', 816 'tools/quic/quic_simple_client.h',
817 'tools/quic/quic_simple_client_session.cc', 817 'tools/quic/quic_client_session.cc',
818 'tools/quic/quic_simple_client_session.h', 818 'tools/quic/quic_client_session.h',
819 'tools/quic/quic_simple_client_stream.cc', 819 'tools/quic/quic_spdy_client_stream.cc',
820 'tools/quic/quic_simple_client_stream.h', 820 'tools/quic/quic_spdy_client_stream.h',
821 'tools/quic/synchronous_host_resolver.cc', 821 'tools/quic/synchronous_host_resolver.cc',
822 'tools/quic/synchronous_host_resolver.h', 822 'tools/quic/synchronous_host_resolver.h',
823 ], 823 ],
824 }, 824 },
825 ], 825 ],
826 'conditions': [ 826 'conditions': [
827 ['use_v8_in_net == 1', { 827 ['use_v8_in_net == 1', {
828 'targets': [ 828 'targets': [
829 { 829 {
830 'target_name': 'net_with_v8', 830 'target_name': 'net_with_v8',
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
1230 '../base/base.gyp:base', 1230 '../base/base.gyp:base',
1231 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 1231 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
1232 '../url/url.gyp:url_lib', 1232 '../url/url.gyp:url_lib',
1233 'balsa', 1233 'balsa',
1234 'epoll_server', 1234 'epoll_server',
1235 'net', 1235 'net',
1236 ], 1236 ],
1237 'sources': [ 1237 'sources': [
1238 'tools/quic/quic_client.cc', 1238 'tools/quic/quic_client.cc',
1239 'tools/quic/quic_client.h', 1239 'tools/quic/quic_client.h',
1240 'tools/quic/quic_client_session.cc',
1241 'tools/quic/quic_client_session.h',
1242 'tools/quic/quic_default_packet_writer.cc', 1240 'tools/quic/quic_default_packet_writer.cc',
1243 'tools/quic/quic_default_packet_writer.h', 1241 'tools/quic/quic_default_packet_writer.h',
1244 'tools/quic/quic_dispatcher.cc', 1242 'tools/quic/quic_dispatcher.cc',
1245 'tools/quic/quic_dispatcher.h', 1243 'tools/quic/quic_dispatcher.h',
1246 'tools/quic/quic_epoll_clock.cc', 1244 'tools/quic/quic_epoll_clock.cc',
1247 'tools/quic/quic_epoll_clock.h', 1245 'tools/quic/quic_epoll_clock.h',
1248 'tools/quic/quic_epoll_connection_helper.cc', 1246 'tools/quic/quic_epoll_connection_helper.cc',
1249 'tools/quic/quic_epoll_connection_helper.h', 1247 'tools/quic/quic_epoll_connection_helper.h',
1250 'tools/quic/quic_in_memory_cache.cc', 1248 'tools/quic/quic_in_memory_cache.cc',
1251 'tools/quic/quic_in_memory_cache.h', 1249 'tools/quic/quic_in_memory_cache.h',
1252 'tools/quic/quic_packet_reader.cc', 1250 'tools/quic/quic_packet_reader.cc',
1253 'tools/quic/quic_packet_reader.h', 1251 'tools/quic/quic_packet_reader.h',
1254 'tools/quic/quic_packet_writer_wrapper.cc', 1252 'tools/quic/quic_packet_writer_wrapper.cc',
1255 'tools/quic/quic_packet_writer_wrapper.h', 1253 'tools/quic/quic_packet_writer_wrapper.h',
1256 'tools/quic/quic_per_connection_packet_writer.cc', 1254 'tools/quic/quic_per_connection_packet_writer.cc',
1257 'tools/quic/quic_per_connection_packet_writer.h', 1255 'tools/quic/quic_per_connection_packet_writer.h',
1258 'tools/quic/quic_server.cc', 1256 'tools/quic/quic_server.cc',
1259 'tools/quic/quic_server.h', 1257 'tools/quic/quic_server.h',
1260 'tools/quic/quic_server_session.cc', 1258 'tools/quic/quic_server_session.cc',
1261 'tools/quic/quic_server_session.h', 1259 'tools/quic/quic_server_session.h',
1262 'tools/quic/quic_socket_utils.cc', 1260 'tools/quic/quic_socket_utils.cc',
1263 'tools/quic/quic_socket_utils.h', 1261 'tools/quic/quic_socket_utils.h',
1264 'tools/quic/quic_spdy_client_stream.cc',
1265 'tools/quic/quic_spdy_client_stream.h',
1266 'tools/quic/quic_spdy_server_stream.cc', 1262 'tools/quic/quic_spdy_server_stream.cc',
1267 'tools/quic/quic_spdy_server_stream.h', 1263 'tools/quic/quic_spdy_server_stream.h',
1268 'tools/quic/quic_time_wait_list_manager.cc', 1264 'tools/quic/quic_time_wait_list_manager.cc',
1269 'tools/quic/quic_time_wait_list_manager.h', 1265 'tools/quic/quic_time_wait_list_manager.h',
1270 ], 1266 ],
1271 }, 1267 },
1272 { 1268 {
1273 'target_name': 'quic_client', 1269 'target_name': 'quic_client',
1274 'type': 'executable', 1270 'type': 'executable',
1275 'dependencies': [ 1271 'dependencies': [
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1521 '../build/isolate.gypi', 1517 '../build/isolate.gypi',
1522 ], 1518 ],
1523 'sources': [ 1519 'sources': [
1524 'net_unittests.isolate', 1520 'net_unittests.isolate',
1525 ], 1521 ],
1526 }, 1522 },
1527 ], 1523 ],
1528 }], 1524 }],
1529 ], 1525 ],
1530 } 1526 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698