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

Side by Side Diff: net/net.gypi

Issue 1548703002: Add class QuicMultipathReceivedPacketManager (not in use currently). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@110446931
Patch Set: Created 4 years, 12 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
« no previous file with comments | « no previous file | net/quic/quic_multipath_received_packet_manager.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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 'quic/quic_fec_group_interface.cc', 349 'quic/quic_fec_group_interface.cc',
350 'quic/quic_fec_group_interface.h', 350 'quic/quic_fec_group_interface.h',
351 'quic/quic_flags.cc', 351 'quic/quic_flags.cc',
352 'quic/quic_flags.h', 352 'quic/quic_flags.h',
353 'quic/quic_flow_controller.cc', 353 'quic/quic_flow_controller.cc',
354 'quic/quic_flow_controller.h', 354 'quic/quic_flow_controller.h',
355 'quic/quic_frame_list.cc', 355 'quic/quic_frame_list.cc',
356 'quic/quic_frame_list.h', 356 'quic/quic_frame_list.h',
357 'quic/quic_framer.cc', 357 'quic/quic_framer.cc',
358 'quic/quic_framer.h', 358 'quic/quic_framer.h',
359 'quic/quic_multipath_received_packet_manager.cc',
360 'quic/quic_multipath_received_packet_manager.h',
359 'quic/quic_multipath_transmissions_map.cc', 361 'quic/quic_multipath_transmissions_map.cc',
360 'quic/quic_multipath_transmissions_map.h', 362 'quic/quic_multipath_transmissions_map.h',
361 'quic/quic_packet_creator.cc', 363 'quic/quic_packet_creator.cc',
362 'quic/quic_packet_creator.h', 364 'quic/quic_packet_creator.h',
363 'quic/quic_packet_generator.cc', 365 'quic/quic_packet_generator.cc',
364 'quic/quic_packet_generator.h', 366 'quic/quic_packet_generator.h',
365 'quic/quic_packet_reader.cc', 367 'quic/quic_packet_reader.cc',
366 'quic/quic_packet_reader.h', 368 'quic/quic_packet_reader.h',
367 'quic/quic_packet_writer.h', 369 'quic/quic_packet_writer.h',
368 'quic/quic_protocol.cc', 370 'quic/quic_protocol.cc',
(...skipping 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after
1558 'quic/quic_crypto_client_stream_test.cc', 1560 'quic/quic_crypto_client_stream_test.cc',
1559 'quic/quic_crypto_server_stream_test.cc', 1561 'quic/quic_crypto_server_stream_test.cc',
1560 'quic/quic_crypto_stream_test.cc', 1562 'quic/quic_crypto_stream_test.cc',
1561 'quic/quic_data_writer_test.cc', 1563 'quic/quic_data_writer_test.cc',
1562 'quic/quic_fec_group_test.cc', 1564 'quic/quic_fec_group_test.cc',
1563 'quic/quic_flow_controller_test.cc', 1565 'quic/quic_flow_controller_test.cc',
1564 'quic/quic_framer_test.cc', 1566 'quic/quic_framer_test.cc',
1565 'quic/quic_headers_stream_test.cc', 1567 'quic/quic_headers_stream_test.cc',
1566 'quic/quic_http_stream_test.cc', 1568 'quic/quic_http_stream_test.cc',
1567 'quic/quic_http_utils_test.cc', 1569 'quic/quic_http_utils_test.cc',
1570 'quic/quic_multipath_received_packet_manager_test.cc',
1568 'quic/quic_multipath_transmissions_map_test.cc', 1571 'quic/quic_multipath_transmissions_map_test.cc',
1569 'quic/quic_network_transaction_unittest.cc', 1572 'quic/quic_network_transaction_unittest.cc',
1570 'quic/quic_packet_creator_test.cc', 1573 'quic/quic_packet_creator_test.cc',
1571 'quic/quic_packet_generator_test.cc', 1574 'quic/quic_packet_generator_test.cc',
1572 'quic/quic_protocol_test.cc', 1575 'quic/quic_protocol_test.cc',
1573 'quic/quic_received_packet_manager_test.cc', 1576 'quic/quic_received_packet_manager_test.cc',
1574 'quic/quic_reliable_client_stream_test.cc', 1577 'quic/quic_reliable_client_stream_test.cc',
1575 'quic/quic_sent_entropy_manager_test.cc', 1578 'quic/quic_sent_entropy_manager_test.cc',
1576 'quic/quic_sent_packet_manager_test.cc', 1579 'quic/quic_sent_packet_manager_test.cc',
1577 'quic/quic_server_id_test.cc', 1580 'quic/quic_server_id_test.cc',
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1931 'docs/bug-triage-labels.md', 1934 'docs/bug-triage-labels.md',
1932 'docs/bug-triage-suggested-workflow.md', 1935 'docs/bug-triage-suggested-workflow.md',
1933 'docs/code-patterns.md', 1936 'docs/code-patterns.md',
1934 'docs/crash-course-in-net-internals.md', 1937 'docs/crash-course-in-net-internals.md',
1935 'docs/life-of-a-url-request.md', 1938 'docs/life-of-a-url-request.md',
1936 'sdch/README.md', 1939 'sdch/README.md',
1937 ], 1940 ],
1938 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs', 1941 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs',
1939 } 1942 }
1940 } 1943 }
OLDNEW
« no previous file with comments | « no previous file | net/quic/quic_multipath_received_packet_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698