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

Side by Side Diff: net/net.gypi

Issue 246073007: SPDY & HPACK: Land recent internal changes (through 65328503) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on upstream change: Expanded FRAME_TOO_LARGE/FRAME_SIZE_ERROR comment. Created 6 years, 7 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/spdy_utils.cc » ('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 994 matching lines...) Expand 10 before | Expand all | Expand 10 after
1005 'socket_stream/socket_stream_metrics.cc', 1005 'socket_stream/socket_stream_metrics.cc',
1006 'socket_stream/socket_stream_metrics.h', 1006 'socket_stream/socket_stream_metrics.h',
1007 'spdy/buffered_spdy_framer.cc', 1007 'spdy/buffered_spdy_framer.cc',
1008 'spdy/buffered_spdy_framer.h', 1008 'spdy/buffered_spdy_framer.h',
1009 'spdy/hpack_constants.cc', 1009 'spdy/hpack_constants.cc',
1010 'spdy/hpack_constants.h', 1010 'spdy/hpack_constants.h',
1011 'spdy/hpack_decoder.cc', 1011 'spdy/hpack_decoder.cc',
1012 'spdy/hpack_decoder.h', 1012 'spdy/hpack_decoder.h',
1013 'spdy/hpack_encoder.cc', 1013 'spdy/hpack_encoder.cc',
1014 'spdy/hpack_encoder.h', 1014 'spdy/hpack_encoder.h',
1015 'spdy/hpack_encoding_context.cc',
1016 'spdy/hpack_encoding_context.h',
1017 'spdy/hpack_entry.cc', 1015 'spdy/hpack_entry.cc',
1018 'spdy/hpack_entry.h', 1016 'spdy/hpack_entry.h',
1019 'spdy/hpack_header_table.cc', 1017 'spdy/hpack_header_table.cc',
1020 'spdy/hpack_header_table.h', 1018 'spdy/hpack_header_table.h',
1021 'spdy/hpack_huffman_table.cc', 1019 'spdy/hpack_huffman_table.cc',
1022 'spdy/hpack_huffman_table.h', 1020 'spdy/hpack_huffman_table.h',
1023 'spdy/hpack_input_stream.cc', 1021 'spdy/hpack_input_stream.cc',
1024 'spdy/hpack_input_stream.h', 1022 'spdy/hpack_input_stream.h',
1025 'spdy/hpack_output_stream.cc', 1023 'spdy/hpack_output_stream.cc',
1026 'spdy/hpack_output_stream.h', 1024 'spdy/hpack_output_stream.h',
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
1562 'socket/tcp_server_socket_unittest.cc', 1560 'socket/tcp_server_socket_unittest.cc',
1563 'socket/tcp_socket_unittest.cc', 1561 'socket/tcp_socket_unittest.cc',
1564 'socket/transport_client_socket_pool_unittest.cc', 1562 'socket/transport_client_socket_pool_unittest.cc',
1565 'socket/transport_client_socket_unittest.cc', 1563 'socket/transport_client_socket_unittest.cc',
1566 'socket/unix_domain_socket_posix_unittest.cc', 1564 'socket/unix_domain_socket_posix_unittest.cc',
1567 'socket_stream/socket_stream_metrics_unittest.cc', 1565 'socket_stream/socket_stream_metrics_unittest.cc',
1568 'socket_stream/socket_stream_unittest.cc', 1566 'socket_stream/socket_stream_unittest.cc',
1569 'spdy/buffered_spdy_framer_unittest.cc', 1567 'spdy/buffered_spdy_framer_unittest.cc',
1570 'spdy/hpack_decoder_test.cc', 1568 'spdy/hpack_decoder_test.cc',
1571 'spdy/hpack_encoder_test.cc', 1569 'spdy/hpack_encoder_test.cc',
1572 'spdy/hpack_encoding_context_test.cc',
1573 'spdy/hpack_entry_test.cc', 1570 'spdy/hpack_entry_test.cc',
1574 'spdy/hpack_header_table_test.cc', 1571 'spdy/hpack_header_table_test.cc',
1575 'spdy/hpack_huffman_table_test.cc', 1572 'spdy/hpack_huffman_table_test.cc',
1576 'spdy/hpack_input_stream_test.cc', 1573 'spdy/hpack_input_stream_test.cc',
1577 'spdy/hpack_output_stream_test.cc', 1574 'spdy/hpack_output_stream_test.cc',
1575 'spdy/hpack_round_trip_test.cc',
1578 'spdy/hpack_string_util_test.cc', 1576 'spdy/hpack_string_util_test.cc',
1579 'spdy/mock_spdy_framer_visitor.cc', 1577 'spdy/mock_spdy_framer_visitor.cc',
1580 'spdy/mock_spdy_framer_visitor.h', 1578 'spdy/mock_spdy_framer_visitor.h',
1581 'spdy/spdy_buffer_unittest.cc', 1579 'spdy/spdy_buffer_unittest.cc',
1582 'spdy/spdy_frame_builder_test.cc', 1580 'spdy/spdy_frame_builder_test.cc',
1583 'spdy/spdy_frame_reader_test.cc', 1581 'spdy/spdy_frame_reader_test.cc',
1584 'spdy/spdy_framer_test.cc', 1582 'spdy/spdy_framer_test.cc',
1585 'spdy/spdy_header_block_unittest.cc', 1583 'spdy/spdy_header_block_unittest.cc',
1586 'spdy/spdy_headers_block_parser_test.cc', 1584 'spdy/spdy_headers_block_parser_test.cc',
1587 'spdy/spdy_http_stream_unittest.cc', 1585 'spdy/spdy_http_stream_unittest.cc',
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
1710 'tools/quic/test_tools/quic_test_client.h', 1708 'tools/quic/test_tools/quic_test_client.h',
1711 'tools/quic/test_tools/quic_test_utils.cc', 1709 'tools/quic/test_tools/quic_test_utils.cc',
1712 'tools/quic/test_tools/quic_test_utils.h', 1710 'tools/quic/test_tools/quic_test_utils.h',
1713 'tools/quic/test_tools/server_thread.h', 1711 'tools/quic/test_tools/server_thread.h',
1714 'tools/quic/test_tools/server_thread.cc', 1712 'tools/quic/test_tools/server_thread.cc',
1715 'tools/quic/test_tools/simple_client.h', 1713 'tools/quic/test_tools/simple_client.h',
1716 'tools/quic/test_tools/simple_client.cc', 1714 'tools/quic/test_tools/simple_client.cc',
1717 ], 1715 ],
1718 } 1716 }
1719 } 1717 }
OLDNEW
« no previous file with comments | « no previous file | net/quic/spdy_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698