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

Side by Side Diff: net/net.gyp

Issue 12381018: QUIC - Some sketching of the crypto handshake. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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
« no previous file with comments | « no previous file | net/quic/crypto/crypto_framer.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 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'use_simple_cache_backend%': 0, 10 'use_simple_cache_backend%': 0,
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 'quic/congestion_control/receive_algorithm_interface.cc', 688 'quic/congestion_control/receive_algorithm_interface.cc',
689 'quic/congestion_control/receive_algorithm_interface.h', 689 'quic/congestion_control/receive_algorithm_interface.h',
690 'quic/congestion_control/send_algorithm_interface.cc', 690 'quic/congestion_control/send_algorithm_interface.cc',
691 'quic/congestion_control/send_algorithm_interface.h', 691 'quic/congestion_control/send_algorithm_interface.h',
692 'quic/congestion_control/tcp_cubic_sender.cc', 692 'quic/congestion_control/tcp_cubic_sender.cc',
693 'quic/congestion_control/tcp_cubic_sender.h', 693 'quic/congestion_control/tcp_cubic_sender.h',
694 'quic/congestion_control/tcp_receiver.cc', 694 'quic/congestion_control/tcp_receiver.cc',
695 'quic/congestion_control/tcp_receiver.h', 695 'quic/congestion_control/tcp_receiver.h',
696 'quic/crypto/crypto_framer.cc', 696 'quic/crypto/crypto_framer.cc',
697 'quic/crypto/crypto_framer.h', 697 'quic/crypto/crypto_framer.h',
698 'quic/crypto/crypto_handshake.cc',
699 'quic/crypto/crypto_handshake.h',
698 'quic/crypto/crypto_protocol.cc', 700 'quic/crypto/crypto_protocol.cc',
699 'quic/crypto/crypto_protocol.h', 701 'quic/crypto/crypto_protocol.h',
700 'quic/crypto/crypto_utils.cc', 702 'quic/crypto/crypto_utils.cc',
701 'quic/crypto/crypto_utils.h', 703 'quic/crypto/crypto_utils.h',
704 'quic/crypto/curve25519_key_exchange.cc',
705 'quic/crypto/curve25519_key_exchange.h',
706 'quic/crypto/key_exchange.h',
702 'quic/crypto/null_decrypter.cc', 707 'quic/crypto/null_decrypter.cc',
703 'quic/crypto/null_decrypter.h', 708 'quic/crypto/null_decrypter.h',
704 'quic/crypto/null_encrypter.cc', 709 'quic/crypto/null_encrypter.cc',
705 'quic/crypto/null_encrypter.h', 710 'quic/crypto/null_encrypter.h',
706 'quic/crypto/quic_decrypter.cc', 711 'quic/crypto/quic_decrypter.cc',
707 'quic/crypto/quic_decrypter.h', 712 'quic/crypto/quic_decrypter.h',
708 'quic/crypto/quic_encrypter.cc', 713 'quic/crypto/quic_encrypter.cc',
709 'quic/crypto/quic_encrypter.h', 714 'quic/crypto/quic_encrypter.h',
710 'quic/crypto/quic_random.cc', 715 'quic/crypto/quic_random.cc',
711 'quic/crypto/quic_random.h', 716 'quic/crypto/quic_random.h',
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after
1512 'proxy/proxy_server_unittest.cc', 1517 'proxy/proxy_server_unittest.cc',
1513 'proxy/proxy_service_unittest.cc', 1518 'proxy/proxy_service_unittest.cc',
1514 'quic/congestion_control/cubic_test.cc', 1519 'quic/congestion_control/cubic_test.cc',
1515 'quic/congestion_control/fix_rate_test.cc', 1520 'quic/congestion_control/fix_rate_test.cc',
1516 'quic/congestion_control/hybrid_slow_start_test.cc', 1521 'quic/congestion_control/hybrid_slow_start_test.cc',
1517 'quic/congestion_control/leaky_bucket_test.cc', 1522 'quic/congestion_control/leaky_bucket_test.cc',
1518 'quic/congestion_control/paced_sender_test.cc', 1523 'quic/congestion_control/paced_sender_test.cc',
1519 'quic/congestion_control/tcp_cubic_sender_test.cc', 1524 'quic/congestion_control/tcp_cubic_sender_test.cc',
1520 'quic/congestion_control/tcp_receiver_test.cc', 1525 'quic/congestion_control/tcp_receiver_test.cc',
1521 'quic/crypto/crypto_framer_test.cc', 1526 'quic/crypto/crypto_framer_test.cc',
1527 'quic/crypto/crypto_handshake_test.cc',
1522 'quic/crypto/null_decrypter_test.cc', 1528 'quic/crypto/null_decrypter_test.cc',
1523 'quic/crypto/null_encrypter_test.cc', 1529 'quic/crypto/null_encrypter_test.cc',
1524 'quic/crypto/quic_random_test.cc', 1530 'quic/crypto/quic_random_test.cc',
1525 'quic/test_tools/mock_clock.cc', 1531 'quic/test_tools/mock_clock.cc',
1526 'quic/test_tools/mock_clock.h', 1532 'quic/test_tools/mock_clock.h',
1527 'quic/test_tools/mock_random.cc', 1533 'quic/test_tools/mock_random.cc',
1528 'quic/test_tools/mock_random.h', 1534 'quic/test_tools/mock_random.h',
1529 'quic/test_tools/quic_connection_peer.cc', 1535 'quic/test_tools/quic_connection_peer.cc',
1530 'quic/test_tools/quic_connection_peer.h', 1536 'quic/test_tools/quic_connection_peer.h',
1531 'quic/test_tools/quic_session_peer.cc', 1537 'quic/test_tools/quic_session_peer.cc',
(...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after
2553 '--result', '<@(_outputs)', 2559 '--result', '<@(_outputs)',
2554 '--isolate', 'net_unittests.isolate', 2560 '--isolate', 'net_unittests.isolate',
2555 ], 2561 ],
2556 }, 2562 },
2557 ], 2563 ],
2558 }, 2564 },
2559 ], 2565 ],
2560 }], 2566 }],
2561 ], 2567 ],
2562 } 2568 }
OLDNEW
« no previous file with comments | « no previous file | net/quic/crypto/crypto_framer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698