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

Side by Side Diff: net/net.gypi

Issue 2184253002: Reset HTTP/2 stream on line-folded response headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re: #7. Created 4 years, 4 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/spdy/header_coalescer.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 1760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1771 'socket/transport_client_socket_pool_test_util.h', 1771 'socket/transport_client_socket_pool_test_util.h',
1772 'socket/transport_client_socket_pool_unittest.cc', 1772 'socket/transport_client_socket_pool_unittest.cc',
1773 'socket/transport_client_socket_unittest.cc', 1773 'socket/transport_client_socket_unittest.cc',
1774 'socket/unix_domain_client_socket_posix_unittest.cc', 1774 'socket/unix_domain_client_socket_posix_unittest.cc',
1775 'socket/unix_domain_server_socket_posix_unittest.cc', 1775 'socket/unix_domain_server_socket_posix_unittest.cc',
1776 'socket/websocket_endpoint_lock_manager_unittest.cc', 1776 'socket/websocket_endpoint_lock_manager_unittest.cc',
1777 'socket/websocket_transport_client_socket_pool_unittest.cc', 1777 'socket/websocket_transport_client_socket_pool_unittest.cc',
1778 'spdy/bidirectional_stream_spdy_impl_unittest.cc', 1778 'spdy/bidirectional_stream_spdy_impl_unittest.cc',
1779 'spdy/buffered_spdy_framer_unittest.cc', 1779 'spdy/buffered_spdy_framer_unittest.cc',
1780 'spdy/fuzzing/hpack_fuzz_util_test.cc', 1780 'spdy/fuzzing/hpack_fuzz_util_test.cc',
1781 'spdy/header_coalescer_test.cc',
1781 'spdy/hpack/hpack_decoder_test.cc', 1782 'spdy/hpack/hpack_decoder_test.cc',
1782 'spdy/hpack/hpack_encoder_test.cc', 1783 'spdy/hpack/hpack_encoder_test.cc',
1783 'spdy/hpack/hpack_entry_test.cc', 1784 'spdy/hpack/hpack_entry_test.cc',
1784 'spdy/hpack/hpack_header_table_test.cc', 1785 'spdy/hpack/hpack_header_table_test.cc',
1785 'spdy/hpack/hpack_huffman_decoder_test.cc', 1786 'spdy/hpack/hpack_huffman_decoder_test.cc',
1786 'spdy/hpack/hpack_huffman_table_test.cc', 1787 'spdy/hpack/hpack_huffman_table_test.cc',
1787 'spdy/hpack/hpack_input_stream_test.cc', 1788 'spdy/hpack/hpack_input_stream_test.cc',
1788 'spdy/hpack/hpack_output_stream_test.cc', 1789 'spdy/hpack/hpack_output_stream_test.cc',
1789 'spdy/hpack/hpack_round_trip_test.cc', 1790 'spdy/hpack/hpack_round_trip_test.cc',
1790 'spdy/hpack/hpack_static_table_test.cc', 1791 'spdy/hpack/hpack_static_table_test.cc',
(...skipping 1391 matching lines...) Expand 10 before | Expand all | Expand 10 after
3182 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl', 3183 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl',
3183 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl', 3184 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl',
3184 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl', 3185 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl',
3185 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl', 3186 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl',
3186 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl', 3187 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl',
3187 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl', 3188 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl',
3188 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l', 3189 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l',
3189 ], 3190 ],
3190 } 3191 }
3191 } 3192 }
OLDNEW
« no previous file with comments | « no previous file | net/spdy/header_coalescer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698