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

Side by Side Diff: net/net.gyp

Issue 11367082: Add QuicStream and friends to QUIC code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Created 8 years, 1 month 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
« no previous file with comments | « no previous file | net/quic/quic_crypto_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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'conditions': [ 10 'conditions': [
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 'quic/crypto/crypto_framer.cc', 648 'quic/crypto/crypto_framer.cc',
649 'quic/crypto/crypto_framer.h', 649 'quic/crypto/crypto_framer.h',
650 'quic/crypto/crypto_protocol.cc', 650 'quic/crypto/crypto_protocol.cc',
651 'quic/crypto/crypto_protocol.h', 651 'quic/crypto/crypto_protocol.h',
652 'quic/crypto/null_decrypter.cc', 652 'quic/crypto/null_decrypter.cc',
653 'quic/crypto/null_encrypter.cc', 653 'quic/crypto/null_encrypter.cc',
654 'quic/crypto/quic_decrypter.h', 654 'quic/crypto/quic_decrypter.h',
655 'quic/crypto/quic_decrypter.cc', 655 'quic/crypto/quic_decrypter.cc',
656 'quic/crypto/quic_encrypter.h', 656 'quic/crypto/quic_encrypter.h',
657 'quic/crypto/quic_encrypter.cc', 657 'quic/crypto/quic_encrypter.cc',
658 'quic/quic_crypto_stream.cc',
659 'quic/quic_crypto_stream.h',
658 'quic/quic_clock.cc', 660 'quic/quic_clock.cc',
659 'quic/quic_clock.h', 661 'quic/quic_clock.h',
660 'quic/quic_connection.cc', 662 'quic/quic_connection.cc',
661 'quic/quic_connection.h', 663 'quic/quic_connection.h',
662 'quic/quic_data_reader.cc', 664 'quic/quic_data_reader.cc',
663 'quic/quic_data_reader.h', 665 'quic/quic_data_reader.h',
664 'quic/quic_data_writer.cc', 666 'quic/quic_data_writer.cc',
665 'quic/quic_data_writer.h', 667 'quic/quic_data_writer.h',
666 'quic/quic_fec_group.cc', 668 'quic/quic_fec_group.cc',
667 'quic/quic_fec_group.h', 669 'quic/quic_fec_group.h',
668 'quic/quic_framer.cc', 670 'quic/quic_framer.cc',
669 'quic/quic_framer.h', 671 'quic/quic_framer.h',
670 'quic/quic_packet_creator.cc', 672 'quic/quic_packet_creator.cc',
671 'quic/quic_packet_creator.h', 673 'quic/quic_packet_creator.h',
672 'quic/quic_protocol.cc', 674 'quic/quic_protocol.cc',
673 'quic/quic_protocol.h', 675 'quic/quic_protocol.h',
676 'quic/quic_session.cc',
677 'quic/quic_session.h',
678 'quic/quic_stream_sequencer.cc',
679 'quic/quic_stream_sequencer.h',
674 'quic/quic_utils.cc', 680 'quic/quic_utils.cc',
675 'quic/quic_utils.h', 681 'quic/quic_utils.h',
682 'quic/reliable_quic_stream.cc',
683 'quic/reliable_quic_stream.h',
676 'socket/buffered_write_stream_socket.cc', 684 'socket/buffered_write_stream_socket.cc',
677 'socket/buffered_write_stream_socket.h', 685 'socket/buffered_write_stream_socket.h',
678 'socket/client_socket_factory.cc', 686 'socket/client_socket_factory.cc',
679 'socket/client_socket_factory.h', 687 'socket/client_socket_factory.h',
680 'socket/client_socket_handle.cc', 688 'socket/client_socket_handle.cc',
681 'socket/client_socket_handle.h', 689 'socket/client_socket_handle.h',
682 'socket/client_socket_pool.cc', 690 'socket/client_socket_pool.cc',
683 'socket/client_socket_pool.h', 691 'socket/client_socket_pool.h',
684 'socket/client_socket_pool_base.cc', 692 'socket/client_socket_pool_base.cc',
685 'socket/client_socket_pool_base.h', 693 'socket/client_socket_pool_base.h',
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
1401 'quic/congestion_control/quic_receipt_metrics_collector_test.cc', 1409 'quic/congestion_control/quic_receipt_metrics_collector_test.cc',
1402 'quic/congestion_control/quic_send_scheduler_test.cc', 1410 'quic/congestion_control/quic_send_scheduler_test.cc',
1403 'quic/crypto/crypto_framer_test.cc', 1411 'quic/crypto/crypto_framer_test.cc',
1404 'quic/crypto/null_decrypter_test.cc', 1412 'quic/crypto/null_decrypter_test.cc',
1405 'quic/crypto/null_encrypter_test.cc', 1413 'quic/crypto/null_encrypter_test.cc',
1406 'quic/test_tools/mock_clock.cc', 1414 'quic/test_tools/mock_clock.cc',
1407 'quic/test_tools/mock_clock.h', 1415 'quic/test_tools/mock_clock.h',
1408 'quic/test_tools/quic_test_utils.cc', 1416 'quic/test_tools/quic_test_utils.cc',
1409 'quic/test_tools/quic_test_utils.h', 1417 'quic/test_tools/quic_test_utils.h',
1410 'quic/quic_connection_test.cc', 1418 'quic/quic_connection_test.cc',
1419 'quic/quic_crypto_stream_test.cc',
1411 'quic/quic_fec_group_test.cc', 1420 'quic/quic_fec_group_test.cc',
1412 'quic/quic_framer_test.cc', 1421 'quic/quic_framer_test.cc',
1413 'quic/quic_packet_creator_test.cc', 1422 'quic/quic_packet_creator_test.cc',
1423 'quic/quic_session_test.cc',
1424 'quic/quic_stream_sequencer_test.cc',
1414 'socket/buffered_write_stream_socket_unittest.cc', 1425 'socket/buffered_write_stream_socket_unittest.cc',
1415 'socket/client_socket_pool_base_unittest.cc', 1426 'socket/client_socket_pool_base_unittest.cc',
1416 'socket/deterministic_socket_data_unittest.cc', 1427 'socket/deterministic_socket_data_unittest.cc',
1417 'socket/mock_client_socket_pool_manager.cc', 1428 'socket/mock_client_socket_pool_manager.cc',
1418 'socket/mock_client_socket_pool_manager.h', 1429 'socket/mock_client_socket_pool_manager.h',
1419 'socket/socks5_client_socket_unittest.cc', 1430 'socket/socks5_client_socket_unittest.cc',
1420 'socket/socks_client_socket_pool_unittest.cc', 1431 'socket/socks_client_socket_pool_unittest.cc',
1421 'socket/socks_client_socket_unittest.cc', 1432 'socket/socks_client_socket_unittest.cc',
1422 'socket/ssl_client_socket_pool_unittest.cc', 1433 'socket/ssl_client_socket_pool_unittest.cc',
1423 'socket/ssl_client_socket_unittest.cc', 1434 'socket/ssl_client_socket_unittest.cc',
(...skipping 941 matching lines...) Expand 10 before | Expand all | Expand 10 after
2365 '--result', '<@(_outputs)', 2376 '--result', '<@(_outputs)',
2366 '--isolate', 'net_unittests.isolate', 2377 '--isolate', 'net_unittests.isolate',
2367 ], 2378 ],
2368 }, 2379 },
2369 ], 2380 ],
2370 }, 2381 },
2371 ], 2382 ],
2372 }], 2383 }],
2373 ], 2384 ],
2374 } 2385 }
OLDNEW
« no previous file with comments | « no previous file | net/quic/quic_crypto_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698