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

Side by Side Diff: net/net.gypi

Issue 2032733002: Do not crash on null stream in writing to bidirectional streams (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_crash
Patch Set: Address Andrei's comments round 2 Created 4 years, 6 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 | « net/http/bidirectional_stream_impl.h ('k') | net/quic/bidirectional_stream_quic_impl.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 1710 matching lines...) Expand 10 before | Expand all | Expand 10 after
1721 'socket/tcp_server_socket_unittest.cc', 1721 'socket/tcp_server_socket_unittest.cc',
1722 'socket/tcp_socket_unittest.cc', 1722 'socket/tcp_socket_unittest.cc',
1723 'socket/transport_client_socket_pool_test_util.cc', 1723 'socket/transport_client_socket_pool_test_util.cc',
1724 'socket/transport_client_socket_pool_test_util.h', 1724 'socket/transport_client_socket_pool_test_util.h',
1725 'socket/transport_client_socket_pool_unittest.cc', 1725 'socket/transport_client_socket_pool_unittest.cc',
1726 'socket/transport_client_socket_unittest.cc', 1726 'socket/transport_client_socket_unittest.cc',
1727 'socket/unix_domain_client_socket_posix_unittest.cc', 1727 'socket/unix_domain_client_socket_posix_unittest.cc',
1728 'socket/unix_domain_server_socket_posix_unittest.cc', 1728 'socket/unix_domain_server_socket_posix_unittest.cc',
1729 'socket/websocket_endpoint_lock_manager_unittest.cc', 1729 'socket/websocket_endpoint_lock_manager_unittest.cc',
1730 'socket/websocket_transport_client_socket_pool_unittest.cc', 1730 'socket/websocket_transport_client_socket_pool_unittest.cc',
1731 'spdy/bidirectional_stream_spdy_impl_unittest.cc',
1731 'spdy/buffered_spdy_framer_unittest.cc', 1732 'spdy/buffered_spdy_framer_unittest.cc',
1732 'spdy/fuzzing/hpack_fuzz_util_test.cc', 1733 'spdy/fuzzing/hpack_fuzz_util_test.cc',
1733 'spdy/hpack/hpack_decoder_test.cc', 1734 'spdy/hpack/hpack_decoder_test.cc',
1734 'spdy/hpack/hpack_encoder_test.cc', 1735 'spdy/hpack/hpack_encoder_test.cc',
1735 'spdy/hpack/hpack_entry_test.cc', 1736 'spdy/hpack/hpack_entry_test.cc',
1736 'spdy/hpack/hpack_header_table_test.cc', 1737 'spdy/hpack/hpack_header_table_test.cc',
1737 'spdy/hpack/hpack_huffman_decoder_test.cc', 1738 'spdy/hpack/hpack_huffman_decoder_test.cc',
1738 'spdy/hpack/hpack_huffman_table_test.cc', 1739 'spdy/hpack/hpack_huffman_table_test.cc',
1739 'spdy/hpack/hpack_input_stream_test.cc', 1740 'spdy/hpack/hpack_input_stream_test.cc',
1740 'spdy/hpack/hpack_output_stream_test.cc', 1741 'spdy/hpack/hpack_output_stream_test.cc',
(...skipping 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after
3106 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl', 3107 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl',
3107 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl', 3108 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl',
3108 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl', 3109 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl',
3109 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl', 3110 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl',
3110 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl', 3111 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl',
3111 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl', 3112 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl',
3112 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l', 3113 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l',
3113 ], 3114 ],
3114 } 3115 }
3115 } 3116 }
OLDNEW
« no previous file with comments | « net/http/bidirectional_stream_impl.h ('k') | net/quic/bidirectional_stream_quic_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698