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

Side by Side Diff: net/net.gyp

Issue 601077: Support HttpOnly cookie on Web Socket (Closed)
Patch Set: fix darin's comment Created 10 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 | « chrome/browser/renderer_host/socket_stream_host.cc ('k') | net/socket_stream/socket_stream.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 (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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 'socket/tcp_client_socket.h', 434 'socket/tcp_client_socket.h',
435 'socket/tcp_client_socket_libevent.cc', 435 'socket/tcp_client_socket_libevent.cc',
436 'socket/tcp_client_socket_libevent.h', 436 'socket/tcp_client_socket_libevent.h',
437 'socket/tcp_client_socket_pool.cc', 437 'socket/tcp_client_socket_pool.cc',
438 'socket/tcp_client_socket_pool.h', 438 'socket/tcp_client_socket_pool.h',
439 'socket/tcp_client_socket_win.cc', 439 'socket/tcp_client_socket_win.cc',
440 'socket/tcp_client_socket_win.h', 440 'socket/tcp_client_socket_win.h',
441 'socket/tcp_pinger.h', 441 'socket/tcp_pinger.h',
442 'socket_stream/socket_stream.cc', 442 'socket_stream/socket_stream.cc',
443 'socket_stream/socket_stream.h', 443 'socket_stream/socket_stream.h',
444 'socket_stream/socket_stream_job.cc',
445 'socket_stream/socket_stream_job.h',
446 'socket_stream/socket_stream_job_manager.cc',
447 'socket_stream/socket_stream_job_manager.h',
444 'socket_stream/socket_stream_metrics.cc', 448 'socket_stream/socket_stream_metrics.cc',
445 'socket_stream/socket_stream_metrics.h', 449 'socket_stream/socket_stream_metrics.h',
446 'socket_stream/socket_stream_throttle.cc', 450 'socket_stream/socket_stream_throttle.cc',
447 'socket_stream/socket_stream_throttle.h', 451 'socket_stream/socket_stream_throttle.h',
448 'spdy/spdy_bitmasks.h', 452 'spdy/spdy_bitmasks.h',
449 'spdy/spdy_frame_builder.cc', 453 'spdy/spdy_frame_builder.cc',
450 'spdy/spdy_frame_builder.h', 454 'spdy/spdy_frame_builder.h',
451 'spdy/spdy_framer.cc', 455 'spdy/spdy_framer.cc',
452 'spdy/spdy_framer.h', 456 'spdy/spdy_framer.h',
453 'spdy/spdy_io_buffer.cc', 457 'spdy/spdy_io_buffer.cc',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 'url_request/url_request_simple_job.h', 500 'url_request/url_request_simple_job.h',
497 'url_request/url_request_status.h', 501 'url_request/url_request_status.h',
498 'url_request/url_request_test_job.cc', 502 'url_request/url_request_test_job.cc',
499 'url_request/url_request_test_job.h', 503 'url_request/url_request_test_job.h',
500 'url_request/url_request_view_net_internals_job.cc', 504 'url_request/url_request_view_net_internals_job.cc',
501 'url_request/url_request_view_net_internals_job.h', 505 'url_request/url_request_view_net_internals_job.h',
502 'url_request/view_cache_helper.cc', 506 'url_request/view_cache_helper.cc',
503 'url_request/view_cache_helper.h', 507 'url_request/view_cache_helper.h',
504 'websockets/websocket.cc', 508 'websockets/websocket.cc',
505 'websockets/websocket.h', 509 'websockets/websocket.h',
510 'websockets/websocket_job.cc',
511 'websockets/websocket_job.h',
506 'websockets/websocket_throttle.cc', 512 'websockets/websocket_throttle.cc',
507 'websockets/websocket_throttle.h', 513 'websockets/websocket_throttle.h',
508 ], 514 ],
509 'export_dependent_settings': [ 515 'export_dependent_settings': [
510 '../base/base.gyp:base', 516 '../base/base.gyp:base',
511 ], 517 ],
512 'conditions': [ 518 'conditions': [
513 ['javascript_engine=="v8"', { 519 ['javascript_engine=="v8"', {
514 'dependencies': [ 520 'dependencies': [
515 '../v8/tools/gyp/v8.gyp:v8', 521 '../v8/tools/gyp/v8.gyp:v8',
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 'socket_stream/socket_stream_metrics_unittest.cc', 688 'socket_stream/socket_stream_metrics_unittest.cc',
683 'socket_stream/socket_stream_unittest.cc', 689 'socket_stream/socket_stream_unittest.cc',
684 'spdy/spdy_framer_test.cc', 690 'spdy/spdy_framer_test.cc',
685 'spdy/spdy_network_transaction_unittest.cc', 691 'spdy/spdy_network_transaction_unittest.cc',
686 'spdy/spdy_protocol_test.cc', 692 'spdy/spdy_protocol_test.cc',
687 'spdy/spdy_session_unittest.cc', 693 'spdy/spdy_session_unittest.cc',
688 'spdy/spdy_stream_unittest.cc', 694 'spdy/spdy_stream_unittest.cc',
689 'url_request/request_tracker_unittest.cc', 695 'url_request/request_tracker_unittest.cc',
690 'url_request/url_request_unittest.cc', 696 'url_request/url_request_unittest.cc',
691 'url_request/url_request_unittest.h', 697 'url_request/url_request_unittest.h',
698 'websockets/websocket_job_unittest.cc',
692 'websockets/websocket_throttle_unittest.cc', 699 'websockets/websocket_throttle_unittest.cc',
693 'websockets/websocket_unittest.cc', 700 'websockets/websocket_unittest.cc',
694 ], 701 ],
695 'conditions': [ 702 'conditions': [
696 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { 703 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', {
697 'dependencies': [ 704 'dependencies': [
698 '../build/linux/system.gyp:gtk', 705 '../build/linux/system.gyp:gtk',
699 ], 706 ],
700 'sources!': [ 707 'sources!': [
701 'base/sdch_filter_unittest.cc', 708 'base/sdch_filter_unittest.cc',
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 ], 924 ],
918 }], 925 }],
919 ], 926 ],
920 } 927 }
921 928
922 # Local Variables: 929 # Local Variables:
923 # tab-width:2 930 # tab-width:2
924 # indent-tabs-mode:nil 931 # indent-tabs-mode:nil
925 # End: 932 # End:
926 # vim: set expandtab tabstop=2 shiftwidth=2: 933 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/socket_stream_host.cc ('k') | net/socket_stream/socket_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698