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

Side by Side Diff: net/net.gyp

Issue 12623017: Add Aes128GcmEncrypter and Aes128GcmDecrypter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Rename the .cc files to _openssl.cc 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
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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 'quic/congestion_control/quic_congestion_manager.cc', 689 'quic/congestion_control/quic_congestion_manager.cc',
690 'quic/congestion_control/quic_congestion_manager.h', 690 'quic/congestion_control/quic_congestion_manager.h',
691 'quic/congestion_control/receive_algorithm_interface.cc', 691 'quic/congestion_control/receive_algorithm_interface.cc',
692 'quic/congestion_control/receive_algorithm_interface.h', 692 'quic/congestion_control/receive_algorithm_interface.h',
693 'quic/congestion_control/send_algorithm_interface.cc', 693 'quic/congestion_control/send_algorithm_interface.cc',
694 'quic/congestion_control/send_algorithm_interface.h', 694 'quic/congestion_control/send_algorithm_interface.h',
695 'quic/congestion_control/tcp_cubic_sender.cc', 695 'quic/congestion_control/tcp_cubic_sender.cc',
696 'quic/congestion_control/tcp_cubic_sender.h', 696 'quic/congestion_control/tcp_cubic_sender.h',
697 'quic/congestion_control/tcp_receiver.cc', 697 'quic/congestion_control/tcp_receiver.cc',
698 'quic/congestion_control/tcp_receiver.h', 698 'quic/congestion_control/tcp_receiver.h',
699 'quic/crypto/aes_128_gcm_decrypter.h',
700 'quic/crypto/aes_128_gcm_decrypter_openssl.cc',
701 'quic/crypto/aes_128_gcm_encrypter.h',
702 'quic/crypto/aes_128_gcm_encrypter_openssl.cc',
699 'quic/crypto/crypto_framer.cc', 703 'quic/crypto/crypto_framer.cc',
700 'quic/crypto/crypto_framer.h', 704 'quic/crypto/crypto_framer.h',
701 'quic/crypto/crypto_handshake.cc', 705 'quic/crypto/crypto_handshake.cc',
702 'quic/crypto/crypto_handshake.h', 706 'quic/crypto/crypto_handshake.h',
703 'quic/crypto/crypto_protocol.cc', 707 'quic/crypto/crypto_protocol.cc',
704 'quic/crypto/crypto_protocol.h', 708 'quic/crypto/crypto_protocol.h',
705 'quic/crypto/crypto_utils.cc', 709 'quic/crypto/crypto_utils.cc',
706 'quic/crypto/crypto_utils.h', 710 'quic/crypto/crypto_utils.h',
707 'quic/crypto/curve25519_key_exchange.cc', 711 'quic/crypto/curve25519_key_exchange.cc',
708 'quic/crypto/curve25519_key_exchange.h', 712 'quic/crypto/curve25519_key_exchange.h',
(...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after
1528 'proxy/proxy_server_unittest.cc', 1532 'proxy/proxy_server_unittest.cc',
1529 'proxy/proxy_service_unittest.cc', 1533 'proxy/proxy_service_unittest.cc',
1530 'quic/blocked_list_test.cc', 1534 'quic/blocked_list_test.cc',
1531 'quic/congestion_control/cubic_test.cc', 1535 'quic/congestion_control/cubic_test.cc',
1532 'quic/congestion_control/fix_rate_test.cc', 1536 'quic/congestion_control/fix_rate_test.cc',
1533 'quic/congestion_control/hybrid_slow_start_test.cc', 1537 'quic/congestion_control/hybrid_slow_start_test.cc',
1534 'quic/congestion_control/leaky_bucket_test.cc', 1538 'quic/congestion_control/leaky_bucket_test.cc',
1535 'quic/congestion_control/paced_sender_test.cc', 1539 'quic/congestion_control/paced_sender_test.cc',
1536 'quic/congestion_control/tcp_cubic_sender_test.cc', 1540 'quic/congestion_control/tcp_cubic_sender_test.cc',
1537 'quic/congestion_control/tcp_receiver_test.cc', 1541 'quic/congestion_control/tcp_receiver_test.cc',
1542 'quic/crypto/aes_128_gcm_decrypter_test.cc',
1543 'quic/crypto/aes_128_gcm_encrypter_test.cc',
1538 'quic/crypto/crypto_framer_test.cc', 1544 'quic/crypto/crypto_framer_test.cc',
1539 'quic/crypto/crypto_handshake_test.cc', 1545 'quic/crypto/crypto_handshake_test.cc',
1540 'quic/crypto/curve25519_key_exchange_test.cc', 1546 'quic/crypto/curve25519_key_exchange_test.cc',
1541 'quic/crypto/null_decrypter_test.cc', 1547 'quic/crypto/null_decrypter_test.cc',
1542 'quic/crypto/null_encrypter_test.cc', 1548 'quic/crypto/null_encrypter_test.cc',
1543 'quic/crypto/p256_key_exchange_test.cc', 1549 'quic/crypto/p256_key_exchange_test.cc',
1544 'quic/crypto/quic_random_test.cc', 1550 'quic/crypto/quic_random_test.cc',
1545 'quic/test_tools/crypto_test_utils.cc', 1551 'quic/test_tools/crypto_test_utils.cc',
1546 'quic/test_tools/crypto_test_utils.h', 1552 'quic/test_tools/crypto_test_utils.h',
1547 'quic/test_tools/mock_clock.cc', 1553 'quic/test_tools/mock_clock.cc',
(...skipping 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after
2578 '--result', '<@(_outputs)', 2584 '--result', '<@(_outputs)',
2579 '--isolate', 'net_unittests.isolate', 2585 '--isolate', 'net_unittests.isolate',
2580 ], 2586 ],
2581 }, 2587 },
2582 ], 2588 ],
2583 }, 2589 },
2584 ], 2590 ],
2585 }], 2591 }],
2586 ], 2592 ],
2587 } 2593 }
OLDNEW
« no previous file with comments | « no previous file | net/quic/crypto/aes_128_gcm_decrypter.h » ('j') | net/quic/crypto/aes_128_gcm_decrypter_openssl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698