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

Side by Side Diff: net/net.gyp

Issue 348803003: Refactor tcp socket and unix domain socket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert the behavior change of calling RecordFastOpenStatus() Created 6 years, 5 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
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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 'dns/mdns_client_impl.h', 385 'dns/mdns_client_impl.h',
386 'dns/record_parsed.cc', 386 'dns/record_parsed.cc',
387 'dns/record_parsed.h', 387 'dns/record_parsed.h',
388 'dns/record_rdata.cc', 388 'dns/record_rdata.cc',
389 'dns/record_rdata.h', 389 'dns/record_rdata.h',
390 ] 390 ]
391 }], 391 }],
392 [ 'OS == "win"', { 392 [ 'OS == "win"', {
393 'sources!': [ 393 'sources!': [
394 'http/http_auth_handler_ntlm_portable.cc', 394 'http/http_auth_handler_ntlm_portable.cc',
395 'socket/socket_libevent.cc',
396 'socket/socket_libevent.h',
395 'socket/tcp_socket_libevent.cc', 397 'socket/tcp_socket_libevent.cc',
396 'socket/tcp_socket_libevent.h', 398 'socket/tcp_socket_libevent.h',
397 'udp/udp_socket_libevent.cc', 399 'udp/udp_socket_libevent.cc',
398 'udp/udp_socket_libevent.h', 400 'udp/udp_socket_libevent.h',
399 ], 401 ],
400 'dependencies': [ 402 'dependencies': [
401 '../third_party/nss/nss.gyp:nspr', 403 '../third_party/nss/nss.gyp:nspr',
402 '../third_party/nss/nss.gyp:nss', 404 '../third_party/nss/nss.gyp:nss',
403 'third_party/nss/ssl.gyp:libssl', 405 'third_party/nss/ssl.gyp:libssl',
404 ], 406 ],
(...skipping 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after
1699 'net_unittests.isolate', 1701 'net_unittests.isolate',
1700 ], 1702 ],
1701 'sources': [ 1703 'sources': [
1702 'net_unittests.isolate', 1704 'net_unittests.isolate',
1703 ], 1705 ],
1704 }, 1706 },
1705 ], 1707 ],
1706 }], 1708 }],
1707 ], 1709 ],
1708 } 1710 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698