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

Side by Side Diff: net/net.gypi

Issue 688593002: Refactor Cubic congestion control to separate out PRR into a distinct (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Move_receive_window_78692549
Patch Set: Created 6 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
« no previous file with comments | « no previous file | net/quic/congestion_control/prr_sender.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This file is shared between the regular GYP build, the NaCl GYP build, and 5 # This file is shared between the regular GYP build, the NaCl GYP build, and
6 # the GN build. For GN support, it must have no conditionals or anything like 6 # the GN build. For GN support, it must have no conditionals or anything like
7 # that beyond the simple one-level-deep dictionary of values. 7 # that beyond the simple one-level-deep dictionary of values.
8 { 8 {
9 'variables': { 9 'variables': {
10 # Subset of net source files that are compiled for NaCl (net_nacl target). 10 # Subset of net source files that are compiled for NaCl (net_nacl target).
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 'quic/congestion_control/cubic.cc', 744 'quic/congestion_control/cubic.cc',
745 'quic/congestion_control/cubic.h', 745 'quic/congestion_control/cubic.h',
746 'quic/congestion_control/hybrid_slow_start.cc', 746 'quic/congestion_control/hybrid_slow_start.cc',
747 'quic/congestion_control/hybrid_slow_start.h', 747 'quic/congestion_control/hybrid_slow_start.h',
748 'quic/congestion_control/leaky_bucket.cc', 748 'quic/congestion_control/leaky_bucket.cc',
749 'quic/congestion_control/leaky_bucket.h', 749 'quic/congestion_control/leaky_bucket.h',
750 'quic/congestion_control/loss_detection_interface.cc', 750 'quic/congestion_control/loss_detection_interface.cc',
751 'quic/congestion_control/loss_detection_interface.h', 751 'quic/congestion_control/loss_detection_interface.h',
752 'quic/congestion_control/pacing_sender.cc', 752 'quic/congestion_control/pacing_sender.cc',
753 'quic/congestion_control/pacing_sender.h', 753 'quic/congestion_control/pacing_sender.h',
754 'quic/congestion_control/prr_sender.cc',
755 'quic/congestion_control/prr_sender.h',
754 'quic/congestion_control/receive_algorithm_interface.cc', 756 'quic/congestion_control/receive_algorithm_interface.cc',
755 'quic/congestion_control/receive_algorithm_interface.h', 757 'quic/congestion_control/receive_algorithm_interface.h',
756 'quic/congestion_control/rtt_stats.cc', 758 'quic/congestion_control/rtt_stats.cc',
757 'quic/congestion_control/rtt_stats.h', 759 'quic/congestion_control/rtt_stats.h',
758 'quic/congestion_control/send_algorithm_interface.cc', 760 'quic/congestion_control/send_algorithm_interface.cc',
759 'quic/congestion_control/send_algorithm_interface.h', 761 'quic/congestion_control/send_algorithm_interface.h',
760 'quic/congestion_control/tcp_cubic_sender.cc', 762 'quic/congestion_control/tcp_cubic_sender.cc',
761 'quic/congestion_control/tcp_cubic_sender.h', 763 'quic/congestion_control/tcp_cubic_sender.h',
762 'quic/congestion_control/tcp_loss_algorithm.cc', 764 'quic/congestion_control/tcp_loss_algorithm.cc',
763 'quic/congestion_control/tcp_loss_algorithm.h', 765 'quic/congestion_control/tcp_loss_algorithm.h',
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
1441 'proxy/proxy_resolver_v8_unittest.cc', 1443 'proxy/proxy_resolver_v8_unittest.cc',
1442 'proxy/proxy_script_decider_unittest.cc', 1444 'proxy/proxy_script_decider_unittest.cc',
1443 'proxy/proxy_script_fetcher_impl_unittest.cc', 1445 'proxy/proxy_script_fetcher_impl_unittest.cc',
1444 'proxy/proxy_server_unittest.cc', 1446 'proxy/proxy_server_unittest.cc',
1445 'proxy/proxy_service_unittest.cc', 1447 'proxy/proxy_service_unittest.cc',
1446 'quic/congestion_control/cube_root_test.cc', 1448 'quic/congestion_control/cube_root_test.cc',
1447 'quic/congestion_control/cubic_test.cc', 1449 'quic/congestion_control/cubic_test.cc',
1448 'quic/congestion_control/hybrid_slow_start_test.cc', 1450 'quic/congestion_control/hybrid_slow_start_test.cc',
1449 'quic/congestion_control/leaky_bucket_test.cc', 1451 'quic/congestion_control/leaky_bucket_test.cc',
1450 'quic/congestion_control/pacing_sender_test.cc', 1452 'quic/congestion_control/pacing_sender_test.cc',
1453 'quic/congestion_control/prr_sender_test.cc',
1451 'quic/congestion_control/rtt_stats_test.cc', 1454 'quic/congestion_control/rtt_stats_test.cc',
1452 'quic/congestion_control/send_algorithm_simulator.cc', 1455 'quic/congestion_control/send_algorithm_simulator.cc',
1453 'quic/congestion_control/send_algorithm_simulator.h', 1456 'quic/congestion_control/send_algorithm_simulator.h',
1454 'quic/congestion_control/tcp_cubic_sender_test.cc', 1457 'quic/congestion_control/tcp_cubic_sender_test.cc',
1455 'quic/congestion_control/tcp_loss_algorithm_test.cc', 1458 'quic/congestion_control/tcp_loss_algorithm_test.cc',
1456 'quic/congestion_control/tcp_receiver_test.cc', 1459 'quic/congestion_control/tcp_receiver_test.cc',
1457 'quic/congestion_control/time_loss_algorithm_test.cc', 1460 'quic/congestion_control/time_loss_algorithm_test.cc',
1458 'quic/crypto/aes_128_gcm_12_decrypter_test.cc', 1461 'quic/crypto/aes_128_gcm_12_decrypter_test.cc',
1459 'quic/crypto/aes_128_gcm_12_encrypter_test.cc', 1462 'quic/crypto/aes_128_gcm_12_encrypter_test.cc',
1460 'quic/crypto/cert_compressor_test.cc', 1463 'quic/crypto/cert_compressor_test.cc',
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
1754 'tools/quic/test_tools/quic_test_client.h', 1757 'tools/quic/test_tools/quic_test_client.h',
1755 'tools/quic/test_tools/quic_test_utils.cc', 1758 'tools/quic/test_tools/quic_test_utils.cc',
1756 'tools/quic/test_tools/quic_test_utils.h', 1759 'tools/quic/test_tools/quic_test_utils.h',
1757 'tools/quic/test_tools/server_thread.h', 1760 'tools/quic/test_tools/server_thread.h',
1758 'tools/quic/test_tools/server_thread.cc', 1761 'tools/quic/test_tools/server_thread.cc',
1759 'tools/quic/test_tools/simple_client.h', 1762 'tools/quic/test_tools/simple_client.h',
1760 'tools/quic/test_tools/simple_client.cc', 1763 'tools/quic/test_tools/simple_client.cc',
1761 ], 1764 ],
1762 } 1765 }
1763 } 1766 }
OLDNEW
« no previous file with comments | « no previous file | net/quic/congestion_control/prr_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698