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

Side by Side Diff: net/net.gyp

Issue 6658027: UDP sockets implementation for windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 'base/test_root_certs_win.cc', 191 'base/test_root_certs_win.cc',
192 'base/transport_security_state.cc', 192 'base/transport_security_state.cc',
193 'base/transport_security_state.h', 193 'base/transport_security_state.h',
194 'base/sys_addrinfo.h', 194 'base/sys_addrinfo.h',
195 'base/upload_data.cc', 195 'base/upload_data.cc',
196 'base/upload_data.h', 196 'base/upload_data.h',
197 'base/upload_data_stream.cc', 197 'base/upload_data_stream.cc',
198 'base/upload_data_stream.h', 198 'base/upload_data_stream.h',
199 'base/winsock_init.cc', 199 'base/winsock_init.cc',
200 'base/winsock_init.h', 200 'base/winsock_init.h',
201 'base/winsock_util.cc',
202 'base/winsock_util.h',
201 'base/x509_certificate.cc', 203 'base/x509_certificate.cc',
202 'base/x509_certificate.h', 204 'base/x509_certificate.h',
203 'base/x509_certificate_mac.cc', 205 'base/x509_certificate_mac.cc',
204 'base/x509_certificate_nss.cc', 206 'base/x509_certificate_nss.cc',
205 'base/x509_certificate_openssl.cc', 207 'base/x509_certificate_openssl.cc',
206 'base/x509_certificate_win.cc', 208 'base/x509_certificate_win.cc',
207 'base/x509_cert_types.cc', 209 'base/x509_cert_types.cc',
208 'base/x509_cert_types.h', 210 'base/x509_cert_types.h',
209 'base/x509_cert_types_mac.cc', 211 'base/x509_cert_types_mac.cc',
210 'base/x509_openssl_util.cc', 212 'base/x509_openssl_util.cc',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 '../third_party/nss/nss.gyp:nss', 318 '../third_party/nss/nss.gyp:nss',
317 'tld_cleanup', 319 'tld_cleanup',
318 ], 320 ],
319 }, 321 },
320 { # else: OS != "win" 322 { # else: OS != "win"
321 'dependencies': [ 323 'dependencies': [
322 '../third_party/libevent/libevent.gyp:libevent', 324 '../third_party/libevent/libevent.gyp:libevent',
323 ], 325 ],
324 'sources!': [ 326 'sources!': [
325 'base/winsock_init.cc', 327 'base/winsock_init.cc',
328 'base/winsock_util.cc',
326 ], 329 ],
327 }, 330 },
328 ], 331 ],
329 [ 'OS == "mac"', { 332 [ 'OS == "mac"', {
330 'dependencies': [ 333 'dependencies': [
331 '../third_party/nss/nss.gyp:nss', 334 '../third_party/nss/nss.gyp:nss',
332 ], 335 ],
333 'link_settings': { 336 'link_settings': {
334 'libraries': [ 337 'libraries': [
335 '$(SDKROOT)/System/Library/Frameworks/Security.framework', 338 '$(SDKROOT)/System/Library/Frameworks/Security.framework',
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 'spdy/spdy_proxy_client_socket.cc', 668 'spdy/spdy_proxy_client_socket.cc',
666 'spdy/spdy_proxy_client_socket.h', 669 'spdy/spdy_proxy_client_socket.h',
667 'spdy/spdy_session.cc', 670 'spdy/spdy_session.cc',
668 'spdy/spdy_session.h', 671 'spdy/spdy_session.h',
669 'spdy/spdy_session_pool.cc', 672 'spdy/spdy_session_pool.cc',
670 'spdy/spdy_session_pool.h', 673 'spdy/spdy_session_pool.h',
671 'spdy/spdy_settings_storage.cc', 674 'spdy/spdy_settings_storage.cc',
672 'spdy/spdy_settings_storage.h', 675 'spdy/spdy_settings_storage.h',
673 'spdy/spdy_stream.cc', 676 'spdy/spdy_stream.cc',
674 'spdy/spdy_stream.h', 677 'spdy/spdy_stream.h',
678 'udp/datagram_client_socket.h',
679 'udp/datagram_server_socket.h',
680 'udp/datagram_socket.h',
681 'udp/udp_client_socket.cc',
682 'udp/udp_client_socket.h',
683 'udp/udp_server_socket.cc',
684 'udp/udp_server_socket.h',
685 'udp/udp_socket.h',
686 'udp/udp_socket_libevent.cc',
687 'udp/udp_socket_libevent.h',
688 'udp/udp_socket_win.cc',
689 'udp/udp_socket_win.h',
675 'url_request/https_prober.h', 690 'url_request/https_prober.h',
676 'url_request/https_prober.cc', 691 'url_request/https_prober.cc',
677 'url_request/url_request.cc', 692 'url_request/url_request.cc',
678 'url_request/url_request.h', 693 'url_request/url_request.h',
679 'url_request/url_request_about_job.cc', 694 'url_request/url_request_about_job.cc',
680 'url_request/url_request_about_job.h', 695 'url_request/url_request_about_job.h',
681 'url_request/url_request_context.cc', 696 'url_request/url_request_context.cc',
682 'url_request/url_request_context.h', 697 'url_request/url_request_context.h',
683 'url_request/url_request_context_storage.cc', 698 'url_request/url_request_context_storage.cc',
684 'url_request/url_request_context_storage.h', 699 'url_request/url_request_context_storage.h',
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 'sources!': [ 814 'sources!': [
800 'ocsp/nss_ocsp.cc', 815 'ocsp/nss_ocsp.cc',
801 'ocsp/nss_ocsp.h', 816 'ocsp/nss_ocsp.h',
802 ], 817 ],
803 }, 818 },
804 ], 819 ],
805 [ 'OS == "win"', { 820 [ 'OS == "win"', {
806 'sources!': [ 821 'sources!': [
807 'http/http_auth_handler_ntlm_portable.cc', 822 'http/http_auth_handler_ntlm_portable.cc',
808 'socket/tcp_client_socket_libevent.cc', 823 'socket/tcp_client_socket_libevent.cc',
824 'udp/udp_socket_libevent.cc',
809 ], 825 ],
810 'dependencies': [ 826 'dependencies': [
811 '../third_party/nss/nss.gyp:nss', 827 '../third_party/nss/nss.gyp:nss',
812 'third_party/nss/ssl.gyp:ssl', 828 'third_party/nss/ssl.gyp:ssl',
813 'tld_cleanup', 829 'tld_cleanup',
814 ], 830 ],
815 }, 831 },
816 { # else: OS != "win" 832 { # else: OS != "win"
817 'dependencies': [ 833 'dependencies': [
818 '../third_party/libevent/libevent.gyp:libevent', 834 '../third_party/libevent/libevent.gyp:libevent',
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
984 'spdy/spdy_stream_unittest.cc', 1000 'spdy/spdy_stream_unittest.cc',
985 'spdy/spdy_test_util.cc', 1001 'spdy/spdy_test_util.cc',
986 'spdy/spdy_test_util.h', 1002 'spdy/spdy_test_util.h',
987 'test/python_utils_unittest.cc', 1003 'test/python_utils_unittest.cc',
988 'tools/dump_cache/url_to_filename_encoder.cc', 1004 'tools/dump_cache/url_to_filename_encoder.cc',
989 'tools/dump_cache/url_to_filename_encoder.h', 1005 'tools/dump_cache/url_to_filename_encoder.h',
990 'tools/dump_cache/url_to_filename_encoder_unittest.cc', 1006 'tools/dump_cache/url_to_filename_encoder_unittest.cc',
991 'tools/dump_cache/url_utilities.h', 1007 'tools/dump_cache/url_utilities.h',
992 'tools/dump_cache/url_utilities.cc', 1008 'tools/dump_cache/url_utilities.cc',
993 'tools/dump_cache/url_utilities_unittest.cc', 1009 'tools/dump_cache/url_utilities_unittest.cc',
1010 'udp/udp_socket_unittest.cc',
994 'url_request/url_request_job_tracker_unittest.cc', 1011 'url_request/url_request_job_tracker_unittest.cc',
995 'url_request/url_request_throttler_unittest.cc', 1012 'url_request/url_request_throttler_unittest.cc',
996 'url_request/url_request_unittest.cc', 1013 'url_request/url_request_unittest.cc',
997 'url_request/view_cache_helper_unittest.cc', 1014 'url_request/view_cache_helper_unittest.cc',
998 'websockets/websocket_frame_handler_unittest.cc', 1015 'websockets/websocket_frame_handler_unittest.cc',
999 'websockets/websocket_handshake_draft75_unittest.cc', 1016 'websockets/websocket_handshake_draft75_unittest.cc',
1000 'websockets/websocket_handshake_handler_unittest.cc', 1017 'websockets/websocket_handshake_handler_unittest.cc',
1001 'websockets/websocket_handshake_unittest.cc', 1018 'websockets/websocket_handshake_unittest.cc',
1002 'websockets/websocket_job_unittest.cc', 1019 'websockets/websocket_job_unittest.cc',
1003 'websockets/websocket_net_log_params_unittest.cc', 1020 'websockets/websocket_net_log_params_unittest.cc',
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
1422 'type': 'executable', 1439 'type': 'executable',
1423 'dependencies': [ 1440 'dependencies': [
1424 '../third_party/openssl/openssl.gyp:openssl', 1441 '../third_party/openssl/openssl.gyp:openssl',
1425 ], 1442 ],
1426 'sources': [ 1443 'sources': [
1427 'test/openssl_helper.cc', 1444 'test/openssl_helper.cc',
1428 ], 1445 ],
1429 }, 1446 },
1430 ], 1447 ],
1431 }], 1448 }],
1432 ['OS=="linux"', {
1433 'targets': [
1434 {
1435 'target_name': 'udp_socket_unittest',
1436 'type': 'executable',
1437 'dependencies': [
1438 'net',
1439 'net_test_support',
1440 '../base/base.gyp:base',
1441 '../base/base.gyp:base_i18n',
1442 '../testing/gmock.gyp:gmock',
1443 '../testing/gtest.gyp:gtest',
1444 '../third_party/zlib/zlib.gyp:zlib',
1445 ],
1446 'sources': [
1447 'udp/udp_client_socket.cc',
1448 'udp/udp_server_socket.cc',
1449 'udp/udp_socket_libevent.cc',
1450 'udp/udp_socket_unittest.cc',
1451 ]
1452 },
1453 ],
1454 }],
1455 ['OS=="win"', { 1449 ['OS=="win"', {
1456 'targets': [ 1450 'targets': [
1457 { 1451 {
1458 # TODO(port): dump_cache is still Windows-specific. 1452 # TODO(port): dump_cache is still Windows-specific.
1459 'target_name': 'dump_cache', 1453 'target_name': 'dump_cache',
1460 'type': 'executable', 1454 'type': 'executable',
1461 'dependencies': [ 1455 'dependencies': [
1462 'net', 1456 'net',
1463 'net_test_support', 1457 'net_test_support',
1464 '../base/base.gyp:base', 1458 '../base/base.gyp:base',
(...skipping 13 matching lines...) Expand all
1478 ], 1472 ],
1479 }], 1473 }],
1480 ], 1474 ],
1481 } 1475 }
1482 1476
1483 # Local Variables: 1477 # Local Variables:
1484 # tab-width:2 1478 # tab-width:2
1485 # indent-tabs-mode:nil 1479 # indent-tabs-mode:nil
1486 # End: 1480 # End:
1487 # vim: set expandtab tabstop=2 shiftwidth=2: 1481 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698