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

Side by Side Diff: net/net.gyp

Issue 1684443002: flip_server: rename create_listener.* for clarity (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/tools/flip_server/create_listener.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 'linux_link_kerberos%': 0, 8 'linux_link_kerberos%': 0,
9 # Enables BidirectionalStream; Used in cronet, disabled by default. 9 # Enables BidirectionalStream; Used in cronet, disabled by default.
10 'enable_bidirectional_stream%': 0, 10 'enable_bidirectional_stream%': 0,
(...skipping 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after
1204 '../base/base.gyp:base', 1204 '../base/base.gyp:base',
1205 '../third_party/boringssl/boringssl.gyp:boringssl', 1205 '../third_party/boringssl/boringssl.gyp:boringssl',
1206 'balsa', 1206 'balsa',
1207 'epoll_server', 1207 'epoll_server',
1208 'net', 1208 'net',
1209 ], 1209 ],
1210 'sources': [ 1210 'sources': [
1211 'tools/flip_server/acceptor_thread.cc', 1211 'tools/flip_server/acceptor_thread.cc',
1212 'tools/flip_server/acceptor_thread.h', 1212 'tools/flip_server/acceptor_thread.h',
1213 'tools/flip_server/constants.h', 1213 'tools/flip_server/constants.h',
1214 'tools/flip_server/create_listener.cc',
1215 'tools/flip_server/create_listener.h',
1216 'tools/flip_server/flip_config.cc', 1214 'tools/flip_server/flip_config.cc',
1217 'tools/flip_server/flip_config.h', 1215 'tools/flip_server/flip_config.h',
1218 'tools/flip_server/http_interface.cc', 1216 'tools/flip_server/http_interface.cc',
1219 'tools/flip_server/http_interface.h', 1217 'tools/flip_server/http_interface.h',
1220 'tools/flip_server/mem_cache.cc', 1218 'tools/flip_server/mem_cache.cc',
1221 'tools/flip_server/mem_cache.h', 1219 'tools/flip_server/mem_cache.h',
1222 'tools/flip_server/output_ordering.cc', 1220 'tools/flip_server/output_ordering.cc',
1223 'tools/flip_server/output_ordering.h', 1221 'tools/flip_server/output_ordering.h',
1224 'tools/flip_server/ring_buffer.cc', 1222 'tools/flip_server/ring_buffer.cc',
1225 'tools/flip_server/ring_buffer.h', 1223 'tools/flip_server/ring_buffer.h',
1226 'tools/flip_server/sm_connection.cc', 1224 'tools/flip_server/sm_connection.cc',
1227 'tools/flip_server/sm_connection.h', 1225 'tools/flip_server/sm_connection.h',
1228 'tools/flip_server/sm_interface.h', 1226 'tools/flip_server/sm_interface.h',
1229 'tools/flip_server/spdy_interface.cc', 1227 'tools/flip_server/spdy_interface.cc',
1230 'tools/flip_server/spdy_interface.h', 1228 'tools/flip_server/spdy_interface.h',
1231 'tools/flip_server/spdy_ssl.cc', 1229 'tools/flip_server/spdy_ssl.cc',
1232 'tools/flip_server/spdy_ssl.h', 1230 'tools/flip_server/spdy_ssl.h',
1233 'tools/flip_server/spdy_util.cc', 1231 'tools/flip_server/spdy_util.cc',
1234 'tools/flip_server/spdy_util.h', 1232 'tools/flip_server/spdy_util.h',
1235 'tools/flip_server/streamer_interface.cc', 1233 'tools/flip_server/streamer_interface.cc',
1236 'tools/flip_server/streamer_interface.h', 1234 'tools/flip_server/streamer_interface.h',
1235 'tools/flip_server/tcp_socket_util.cc',
1236 'tools/flip_server/tcp_socket_util.h',
1237 'tools/flip_server/url_to_filename_encoder.cc', 1237 'tools/flip_server/url_to_filename_encoder.cc',
1238 'tools/flip_server/url_to_filename_encoder.h', 1238 'tools/flip_server/url_to_filename_encoder.h',
1239 'tools/flip_server/url_utilities.cc', 1239 'tools/flip_server/url_utilities.cc',
1240 'tools/flip_server/url_utilities.h', 1240 'tools/flip_server/url_utilities.h',
1241 ], 1241 ],
1242 }, 1242 },
1243 { 1243 {
1244 'target_name': 'flip_in_mem_edsm_server_unittests', 1244 'target_name': 'flip_in_mem_edsm_server_unittests',
1245 'type': 'executable', 1245 'type': 'executable',
1246 'dependencies': [ 1246 'dependencies': [
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
1700 '../build/isolate.gypi', 1700 '../build/isolate.gypi',
1701 ], 1701 ],
1702 'sources': [ 1702 'sources': [
1703 'net_unittests.isolate', 1703 'net_unittests.isolate',
1704 ], 1704 ],
1705 }, 1705 },
1706 ], 1706 ],
1707 }], 1707 }],
1708 ], 1708 ],
1709 } 1709 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/tools/flip_server/create_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698