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

Unified Diff: net/net.gyp

Issue 1036023002: Move remaining QUIC server files from net/quic/ to net/tools/quic/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: correctly fix cronet 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/BUILD.gn ('k') | net/net.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index 1fd42708a58152f52fe6ef30bd1b441eed5f51da..39886bb9e59b96d4a2aad0ed3d754b22d5d89064 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -114,7 +114,6 @@
'net_derived_sources',
'net_extras',
'net_test_support',
- 'quic_tools',
'simple_quic_tools',
],
'sources': [
@@ -123,9 +122,9 @@
'conditions': [
['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
'dependencies': [
+ 'epoll_quic_tools',
'epoll_server',
'flip_in_mem_edsm_server_base',
- 'quic_base',
],
'sources': [
'<@(net_linux_test_sources)',
@@ -773,27 +772,6 @@
'msvs_disabled_warnings': [4267, ],
},
{
- # This is a temporary target which will be merged into 'net' once the
- # dependency on balsa is eliminated and the classes are actually used.
- 'target_name': 'quic_tools',
- 'type': 'static_library',
- 'dependencies': [
- '../base/base.gyp:base',
- '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
- '../url/url.gyp:url_lib',
- 'net',
- 'simple_quic_tools',
- ],
- 'sources': [
- 'quic/quic_per_connection_packet_writer.cc',
- 'quic/quic_per_connection_packet_writer.h',
- 'quic/quic_server.cc',
- 'quic/quic_server.h',
- 'quic/quic_server_packet_writer.cc',
- 'quic/quic_server_packet_writer.h',
- ],
- },
- {
'target_name': 'simple_quic_tools',
'type': 'static_library',
'dependencies': [
@@ -815,6 +793,12 @@
'tools/quic/quic_server_session.h',
'tools/quic/quic_simple_client.cc',
'tools/quic/quic_simple_client.h',
+ 'tools/quic/quic_simple_per_connection_packet_writer.cc',
+ 'tools/quic/quic_simple_per_connection_packet_writer.h',
+ 'tools/quic/quic_simple_server.cc',
+ 'tools/quic/quic_simple_server.h',
+ 'tools/quic/quic_simple_server_packet_writer.cc',
+ 'tools/quic/quic_simple_server_packet_writer.h',
'tools/quic/quic_spdy_client_stream.cc',
'tools/quic/quic_spdy_client_stream.h',
'tools/quic/quic_spdy_server_stream.cc',
@@ -1087,7 +1071,7 @@
],
},
{
- 'target_name': 'simple_quic_client',
+ 'target_name': 'quic_client',
'type': 'executable',
'dependencies': [
'../base/base.gyp:base',
@@ -1100,6 +1084,18 @@
],
},
{
+ 'target_name': 'quic_server',
+ 'type': 'executable',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'net',
+ 'simple_quic_tools',
+ ],
+ 'sources': [
+ 'tools/quic/quic_simple_server_bin.cc',
+ ],
+ },
+ {
'target_name': 'stress_cache',
'type': 'executable',
'dependencies': [
@@ -1227,7 +1223,7 @@
],
},
{
- 'target_name': 'quic_base',
+ 'target_name': 'epoll_quic_tools',
'type': 'static_library',
'dependencies': [
'../base/base.gyp:base',
@@ -1257,33 +1253,29 @@
],
},
{
- 'target_name': 'quic_client',
+ 'target_name': 'epoll_quic_client',
'type': 'executable',
'dependencies': [
'../base/base.gyp:base',
'net',
- 'quic_base',
+ 'epoll_quic_tools',
'simple_quic_tools',
],
'sources': [
'tools/quic/quic_client_bin.cc',
],
},
- ]
- }],
- ['os_posix == 1 and OS != "ios" and OS != "android"', {
- 'targets': [
{
- 'target_name': 'quic_server',
+ 'target_name': 'epoll_quic_server',
'type': 'executable',
'dependencies': [
'../base/base.gyp:base',
'net',
- 'quic_tools',
+ 'epoll_quic_tools',
'simple_quic_tools',
],
'sources': [
- 'quic/quic_server_bin.cc',
+ 'tools/quic/quic_server_bin.cc',
],
},
]
« 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