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

Side by Side Diff: net/net.gypi

Issue 2553683006: Add HpackDecoder2. (Closed)
Patch Set: Created 4 years 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/hpack/hpack_decoder2.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 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after
1312 'spdy/buffered_spdy_framer.h', 1312 'spdy/buffered_spdy_framer.h',
1313 'spdy/fuzzing/hpack_fuzz_util.cc', 1313 'spdy/fuzzing/hpack_fuzz_util.cc',
1314 'spdy/fuzzing/hpack_fuzz_util.h', 1314 'spdy/fuzzing/hpack_fuzz_util.h',
1315 'spdy/header_coalescer.cc', 1315 'spdy/header_coalescer.cc',
1316 'spdy/header_coalescer.h', 1316 'spdy/header_coalescer.h',
1317 'spdy/hpack/hpack_constants.cc', 1317 'spdy/hpack/hpack_constants.cc',
1318 'spdy/hpack/hpack_constants.h', 1318 'spdy/hpack/hpack_constants.h',
1319 'spdy/hpack/hpack_decoder.cc', 1319 'spdy/hpack/hpack_decoder.cc',
1320 'spdy/hpack/hpack_decoder.h', 1320 'spdy/hpack/hpack_decoder.h',
1321 'spdy/hpack/hpack_decoder_interface.h', 1321 'spdy/hpack/hpack_decoder_interface.h',
1322 'spdy/hpack/hpack_decoder2.cc',
1323 'spdy/hpack/hpack_decoder2.h',
1322 'spdy/hpack/hpack_encoder.cc', 1324 'spdy/hpack/hpack_encoder.cc',
1323 'spdy/hpack/hpack_encoder.h', 1325 'spdy/hpack/hpack_encoder.h',
1324 'spdy/hpack/hpack_entry.cc', 1326 'spdy/hpack/hpack_entry.cc',
1325 'spdy/hpack/hpack_entry.h', 1327 'spdy/hpack/hpack_entry.h',
1326 'spdy/hpack/hpack_header_table.cc', 1328 'spdy/hpack/hpack_header_table.cc',
1327 'spdy/hpack/hpack_header_table.h', 1329 'spdy/hpack/hpack_header_table.h',
1328 'spdy/hpack/hpack_huffman_decoder.cc', 1330 'spdy/hpack/hpack_huffman_decoder.cc',
1329 'spdy/hpack/hpack_huffman_decoder.h', 1331 'spdy/hpack/hpack_huffman_decoder.h',
1330 'spdy/hpack/hpack_huffman_table.cc', 1332 'spdy/hpack/hpack_huffman_table.cc',
1331 'spdy/hpack/hpack_huffman_table.h', 1333 'spdy/hpack/hpack_huffman_table.h',
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
2069 'socket/udp_socket_unittest.cc', 2071 'socket/udp_socket_unittest.cc',
2070 'socket/unix_domain_client_socket_posix_unittest.cc', 2072 'socket/unix_domain_client_socket_posix_unittest.cc',
2071 'socket/unix_domain_server_socket_posix_unittest.cc', 2073 'socket/unix_domain_server_socket_posix_unittest.cc',
2072 'socket/websocket_endpoint_lock_manager_unittest.cc', 2074 'socket/websocket_endpoint_lock_manager_unittest.cc',
2073 'socket/websocket_transport_client_socket_pool_unittest.cc', 2075 'socket/websocket_transport_client_socket_pool_unittest.cc',
2074 'spdy/bidirectional_stream_spdy_impl_unittest.cc', 2076 'spdy/bidirectional_stream_spdy_impl_unittest.cc',
2075 'spdy/buffered_spdy_framer_unittest.cc', 2077 'spdy/buffered_spdy_framer_unittest.cc',
2076 'spdy/fuzzing/hpack_fuzz_util_test.cc', 2078 'spdy/fuzzing/hpack_fuzz_util_test.cc',
2077 'spdy/header_coalescer_test.cc', 2079 'spdy/header_coalescer_test.cc',
2078 'spdy/hpack/hpack_decoder_test.cc', 2080 'spdy/hpack/hpack_decoder_test.cc',
2081 'spdy/hpack/hpack_decoder2_test.cc',
2079 'spdy/hpack/hpack_encoder_test.cc', 2082 'spdy/hpack/hpack_encoder_test.cc',
2080 'spdy/hpack/hpack_entry_test.cc', 2083 'spdy/hpack/hpack_entry_test.cc',
2081 'spdy/hpack/hpack_header_table_test.cc', 2084 'spdy/hpack/hpack_header_table_test.cc',
2082 'spdy/hpack/hpack_huffman_decoder_test.cc', 2085 'spdy/hpack/hpack_huffman_decoder_test.cc',
2083 'spdy/hpack/hpack_huffman_table_test.cc', 2086 'spdy/hpack/hpack_huffman_table_test.cc',
2084 'spdy/hpack/hpack_input_stream_test.cc', 2087 'spdy/hpack/hpack_input_stream_test.cc',
2085 'spdy/hpack/hpack_output_stream_test.cc', 2088 'spdy/hpack/hpack_output_stream_test.cc',
2086 'spdy/hpack/hpack_round_trip_test.cc', 2089 'spdy/hpack/hpack_round_trip_test.cc',
2087 'spdy/hpack/hpack_static_table_test.cc', 2090 'spdy/hpack/hpack_static_table_test.cc',
2088 'spdy/http2_priority_dependencies_unittest.cc', 2091 'spdy/http2_priority_dependencies_unittest.cc',
(...skipping 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after
3505 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl', 3508 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl',
3506 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl', 3509 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl',
3507 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl', 3510 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl',
3508 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl', 3511 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl',
3509 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl', 3512 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl',
3510 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl', 3513 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl',
3511 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l', 3514 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l',
3512 ], 3515 ],
3513 } 3516 }
3514 } 3517 }
OLDNEW
« no previous file with comments | « no previous file | net/spdy/hpack/hpack_decoder2.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698