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

Side by Side Diff: net/net.gyp

Issue 11476031: Add the QuicRandom interface with a default implementation that is (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Export QuicRandom for net_unittesrs Created 8 years 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 | « crypto/random.h ('k') | net/quic/crypto/quic_random.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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 'quic/congestion_control/quic_send_scheduler.h', 654 'quic/congestion_control/quic_send_scheduler.h',
655 'quic/congestion_control/receive_algorithm_interface.cc', 655 'quic/congestion_control/receive_algorithm_interface.cc',
656 'quic/congestion_control/receive_algorithm_interface.h', 656 'quic/congestion_control/receive_algorithm_interface.h',
657 'quic/congestion_control/send_algorithm_interface.cc', 657 'quic/congestion_control/send_algorithm_interface.cc',
658 'quic/congestion_control/send_algorithm_interface.h', 658 'quic/congestion_control/send_algorithm_interface.h',
659 'quic/crypto/crypto_framer.cc', 659 'quic/crypto/crypto_framer.cc',
660 'quic/crypto/crypto_framer.h', 660 'quic/crypto/crypto_framer.h',
661 'quic/crypto/crypto_protocol.cc', 661 'quic/crypto/crypto_protocol.cc',
662 'quic/crypto/crypto_protocol.h', 662 'quic/crypto/crypto_protocol.h',
663 'quic/crypto/null_decrypter.cc', 663 'quic/crypto/null_decrypter.cc',
664 'quic/crypto/null_decrypter.h',
664 'quic/crypto/null_encrypter.cc', 665 'quic/crypto/null_encrypter.cc',
666 'quic/crypto/null_encrypter.h',
667 'quic/crypto/quic_decrypter.cc',
665 'quic/crypto/quic_decrypter.h', 668 'quic/crypto/quic_decrypter.h',
666 'quic/crypto/quic_decrypter.cc', 669 'quic/crypto/quic_encrypter.cc',
667 'quic/crypto/quic_encrypter.h', 670 'quic/crypto/quic_encrypter.h',
668 'quic/crypto/quic_encrypter.cc', 671 'quic/crypto/quic_random.cc',
672 'quic/crypto/quic_random.h',
669 'quic/quic_client_session.cc', 673 'quic/quic_client_session.cc',
670 'quic/quic_client_session.h', 674 'quic/quic_client_session.h',
671 'quic/quic_crypto_client_stream.cc', 675 'quic/quic_crypto_client_stream.cc',
672 'quic/quic_crypto_client_stream.h', 676 'quic/quic_crypto_client_stream.h',
673 'quic/quic_crypto_stream.cc', 677 'quic/quic_crypto_stream.cc',
674 'quic/quic_crypto_stream.h', 678 'quic/quic_crypto_stream.h',
675 'quic/quic_clock.cc', 679 'quic/quic_clock.cc',
676 'quic/quic_clock.h', 680 'quic/quic_clock.h',
677 'quic/quic_connection.cc', 681 'quic/quic_connection.cc',
678 'quic/quic_connection.h', 682 'quic/quic_connection.h',
(...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after
1431 'proxy/proxy_service_unittest.cc', 1435 'proxy/proxy_service_unittest.cc',
1432 'proxy/sync_host_resolver_bridge_unittest.cc', 1436 'proxy/sync_host_resolver_bridge_unittest.cc',
1433 'quic/congestion_control/fix_rate_test.cc', 1437 'quic/congestion_control/fix_rate_test.cc',
1434 'quic/congestion_control/leaky_bucket_test.cc', 1438 'quic/congestion_control/leaky_bucket_test.cc',
1435 'quic/congestion_control/paced_sender_test.cc', 1439 'quic/congestion_control/paced_sender_test.cc',
1436 'quic/congestion_control/quic_receipt_metrics_collector_test.cc', 1440 'quic/congestion_control/quic_receipt_metrics_collector_test.cc',
1437 'quic/congestion_control/quic_send_scheduler_test.cc', 1441 'quic/congestion_control/quic_send_scheduler_test.cc',
1438 'quic/crypto/crypto_framer_test.cc', 1442 'quic/crypto/crypto_framer_test.cc',
1439 'quic/crypto/null_decrypter_test.cc', 1443 'quic/crypto/null_decrypter_test.cc',
1440 'quic/crypto/null_encrypter_test.cc', 1444 'quic/crypto/null_encrypter_test.cc',
1445 'quic/crypto/quic_random_test.cc',
1441 'quic/test_tools/mock_clock.cc', 1446 'quic/test_tools/mock_clock.cc',
1442 'quic/test_tools/mock_clock.h', 1447 'quic/test_tools/mock_clock.h',
1443 'quic/test_tools/quic_test_utils.cc', 1448 'quic/test_tools/quic_test_utils.cc',
1444 'quic/test_tools/quic_test_utils.h', 1449 'quic/test_tools/quic_test_utils.h',
1445 'quic/test_tools/test_task_runner.cc', 1450 'quic/test_tools/test_task_runner.cc',
1446 'quic/test_tools/test_task_runner.h', 1451 'quic/test_tools/test_task_runner.h',
1447 'quic/quic_client_session_test.cc', 1452 'quic/quic_client_session_test.cc',
1448 'quic/quic_clock_test.cc', 1453 'quic/quic_clock_test.cc',
1449 'quic/quic_connection_helper_test.cc', 1454 'quic/quic_connection_helper_test.cc',
1450 'quic/quic_connection_test.cc', 1455 'quic/quic_connection_test.cc',
(...skipping 915 matching lines...) Expand 10 before | Expand all | Expand 10 after
2366 '--result', '<@(_outputs)', 2371 '--result', '<@(_outputs)',
2367 '--isolate', 'net_unittests.isolate', 2372 '--isolate', 'net_unittests.isolate',
2368 ], 2373 ],
2369 }, 2374 },
2370 ], 2375 ],
2371 }, 2376 },
2372 ], 2377 ],
2373 }], 2378 }],
2374 ], 2379 ],
2375 } 2380 }
OLDNEW
« no previous file with comments | « crypto/random.h ('k') | net/quic/crypto/quic_random.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698