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

Side by Side Diff: net/net.gypi

Issue 2554683003: Revert of Add new HTTP/2 and HPACK decoder in net/http2/. (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 | « net/http2/tools/random_decoder_test.cc ('k') | no next file » | 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 766 matching lines...) Expand 10 before | Expand all | Expand 10 after
777 'http/proxy_client_socket.h', 777 'http/proxy_client_socket.h',
778 'http/proxy_connect_redirect_http_stream.cc', 778 'http/proxy_connect_redirect_http_stream.cc',
779 'http/proxy_connect_redirect_http_stream.h', 779 'http/proxy_connect_redirect_http_stream.h',
780 'http/transport_security_persister.cc', 780 'http/transport_security_persister.cc',
781 'http/transport_security_persister.h', 781 'http/transport_security_persister.h',
782 'http/transport_security_state_static.h', 782 'http/transport_security_state_static.h',
783 'http/url_security_manager.cc', 783 'http/url_security_manager.cc',
784 'http/url_security_manager.h', 784 'http/url_security_manager.h',
785 'http/url_security_manager_posix.cc', 785 'http/url_security_manager_posix.cc',
786 'http/url_security_manager_win.cc', 786 'http/url_security_manager_win.cc',
787 'http2/decoder/decode_buffer.cc',
788 'http2/decoder/decode_buffer.h',
789 'http2/decoder/decode_http2_structures.cc',
790 'http2/decoder/decode_http2_structures.h',
791 'http2/decoder/decode_status.cc',
792 'http2/decoder/decode_status.h',
793 'http2/decoder/frame_decoder_state.cc',
794 'http2/decoder/frame_decoder_state.h',
795 'http2/decoder/http2_frame_decoder.cc',
796 'http2/decoder/http2_frame_decoder.h',
797 'http2/decoder/http2_frame_decoder_listener.cc',
798 'http2/decoder/http2_frame_decoder_listener.h',
799 'http2/decoder/http2_structure_decoder.cc',
800 'http2/decoder/http2_structure_decoder.h',
801 'http2/decoder/payload_decoders/altsvc_payload_decoder.cc',
802 'http2/decoder/payload_decoders/altsvc_payload_decoder.h',
803 'http2/decoder/payload_decoders/continuation_payload_decoder.cc',
804 'http2/decoder/payload_decoders/continuation_payload_decoder.h',
805 'http2/decoder/payload_decoders/data_payload_decoder.cc',
806 'http2/decoder/payload_decoders/data_payload_decoder.h',
807 'http2/decoder/payload_decoders/goaway_payload_decoder.cc',
808 'http2/decoder/payload_decoders/goaway_payload_decoder.h',
809 'http2/decoder/payload_decoders/headers_payload_decoder.cc',
810 'http2/decoder/payload_decoders/headers_payload_decoder.h',
811 'http2/decoder/payload_decoders/ping_payload_decoder.cc',
812 'http2/decoder/payload_decoders/ping_payload_decoder.h',
813 'http2/decoder/payload_decoders/priority_payload_decoder.cc',
814 'http2/decoder/payload_decoders/priority_payload_decoder.h',
815 'http2/decoder/payload_decoders/push_promise_payload_decoder.cc',
816 'http2/decoder/payload_decoders/push_promise_payload_decoder.h',
817 'http2/decoder/payload_decoders/rst_stream_payload_decoder.cc',
818 'http2/decoder/payload_decoders/rst_stream_payload_decoder.h',
819 'http2/decoder/payload_decoders/settings_payload_decoder.cc',
820 'http2/decoder/payload_decoders/settings_payload_decoder.h',
821 'http2/decoder/payload_decoders/unknown_payload_decoder.cc',
822 'http2/decoder/payload_decoders/unknown_payload_decoder.h',
823 'http2/decoder/payload_decoders/window_update_payload_decoder.cc',
824 'http2/decoder/payload_decoders/window_update_payload_decoder.h',
825 'http2/hpack/decoder/hpack_block_decoder.cc',
826 'http2/hpack/decoder/hpack_block_decoder.h',
827 'http2/hpack/decoder/hpack_decoder_string_buffer.cc',
828 'http2/hpack/decoder/hpack_decoder_string_buffer.h',
829 'http2/hpack/decoder/hpack_entry_decoder.cc',
830 'http2/hpack/decoder/hpack_entry_decoder.h',
831 'http2/hpack/decoder/hpack_entry_decoder_listener.cc',
832 'http2/hpack/decoder/hpack_entry_decoder_listener.h',
833 'http2/hpack/decoder/hpack_entry_type_decoder.cc',
834 'http2/hpack/decoder/hpack_entry_type_decoder.h',
835 'http2/hpack/decoder/hpack_string_decoder.cc',
836 'http2/hpack/decoder/hpack_string_decoder.h',
837 'http2/hpack/decoder/hpack_string_decoder_listener.cc',
838 'http2/hpack/decoder/hpack_string_decoder_listener.h',
839 'http2/hpack/decoder/hpack_varint_decoder.cc',
840 'http2/hpack/decoder/hpack_varint_decoder.h',
841 'http2/hpack/http2_hpack_constants.cc',
842 'http2/hpack/http2_hpack_constants.h',
843 'http2/hpack/huffman/http2_hpack_huffman_decoder.cc',
844 'http2/hpack/huffman/http2_hpack_huffman_decoder.h',
845 'http2/http2_constants.cc',
846 'http2/http2_constants.h',
847 'http2/http2_structures.cc',
848 'http2/http2_structures.h',
849 'http2/tools/http2_bug_tracker.h',
850 'nqe/cached_network_quality.cc', 787 'nqe/cached_network_quality.cc',
851 'nqe/cached_network_quality.h', 788 'nqe/cached_network_quality.h',
852 'nqe/effective_connection_type.cc', 789 'nqe/effective_connection_type.cc',
853 'nqe/effective_connection_type.h', 790 'nqe/effective_connection_type.h',
854 'nqe/external_estimate_provider.h', 791 'nqe/external_estimate_provider.h',
855 'nqe/network_id.h', 792 'nqe/network_id.h',
856 'nqe/network_qualities_prefs_manager.cc', 793 'nqe/network_qualities_prefs_manager.cc',
857 'nqe/network_qualities_prefs_manager.h', 794 'nqe/network_qualities_prefs_manager.h',
858 'nqe/network_quality.cc', 795 'nqe/network_quality.cc',
859 'nqe/network_quality.h', 796 'nqe/network_quality.h',
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after
1734 'http/mock_allow_http_auth_preferences.h', 1671 'http/mock_allow_http_auth_preferences.h',
1735 'http/mock_gssapi_library_posix.cc', 1672 'http/mock_gssapi_library_posix.cc',
1736 'http/mock_gssapi_library_posix.h', 1673 'http/mock_gssapi_library_posix.h',
1737 'http/mock_http_cache.cc', 1674 'http/mock_http_cache.cc',
1738 'http/mock_http_cache.h', 1675 'http/mock_http_cache.h',
1739 'http/mock_sspi_library_win.cc', 1676 'http/mock_sspi_library_win.cc',
1740 'http/mock_sspi_library_win.h', 1677 'http/mock_sspi_library_win.h',
1741 'http/transport_security_persister_unittest.cc', 1678 'http/transport_security_persister_unittest.cc',
1742 'http/transport_security_state_unittest.cc', 1679 'http/transport_security_state_unittest.cc',
1743 'http/url_security_manager_unittest.cc', 1680 'http/url_security_manager_unittest.cc',
1744 'http2/decoder/decode_buffer_test.cc',
1745 'http2/decoder/decode_http2_structures_test.cc',
1746 'http2/decoder/frame_decoder_state_test_util.cc',
1747 'http2/decoder/frame_decoder_state_test_util.h',
1748 'http2/decoder/frame_parts.cc',
1749 'http2/decoder/frame_parts.h',
1750 'http2/decoder/frame_parts_collector.cc',
1751 'http2/decoder/frame_parts_collector.h',
1752 'http2/decoder/frame_parts_collector_listener.cc',
1753 'http2/decoder/frame_parts_collector_listener.h',
1754 'http2/decoder/http2_frame_decoder_listener_test_util.cc',
1755 'http2/decoder/http2_frame_decoder_listener_test_util.h',
1756 'http2/decoder/http2_frame_decoder_test.cc',
1757 'http2/decoder/http2_structure_decoder_test.cc',
1758 'http2/decoder/http2_structure_decoder_test_util.h',
1759 'http2/decoder/payload_decoders/altsvc_payload_decoder_test.cc',
1760 'http2/decoder/payload_decoders/continuation_payload_decoder_test.cc',
1761 'http2/decoder/payload_decoders/data_payload_decoder_test.cc',
1762 'http2/decoder/payload_decoders/goaway_payload_decoder_test.cc',
1763 'http2/decoder/payload_decoders/headers_payload_decoder_test.cc',
1764 'http2/decoder/payload_decoders/payload_decoder_base_test_util.cc',
1765 'http2/decoder/payload_decoders/payload_decoder_base_test_util.h',
1766 'http2/decoder/payload_decoders/ping_payload_decoder_test.cc',
1767 'http2/decoder/payload_decoders/priority_payload_decoder_test.cc',
1768 'http2/decoder/payload_decoders/push_promise_payload_decoder_test.cc',
1769 'http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc',
1770 'http2/decoder/payload_decoders/settings_payload_decoder_test.cc',
1771 'http2/decoder/payload_decoders/unknown_payload_decoder_test.cc',
1772 'http2/decoder/payload_decoders/window_update_payload_decoder_test.cc',
1773 'http2/hpack/decoder/hpack_block_collector.cc',
1774 'http2/hpack/decoder/hpack_block_collector.h',
1775 'http2/hpack/decoder/hpack_block_decoder_test.cc',
1776 'http2/hpack/decoder/hpack_decoder_string_buffer_test.cc',
1777 'http2/hpack/decoder/hpack_entry_collector.cc',
1778 'http2/hpack/decoder/hpack_entry_collector.h',
1779 'http2/hpack/decoder/hpack_entry_decoder_test.cc',
1780 'http2/hpack/decoder/hpack_entry_type_decoder_test.cc',
1781 'http2/hpack/decoder/hpack_string_collector.cc',
1782 'http2/hpack/decoder/hpack_string_collector.h',
1783 'http2/hpack/decoder/hpack_string_decoder_test.cc',
1784 'http2/hpack/decoder/hpack_varint_decoder_test.cc',
1785 'http2/hpack/http2_hpack_constants_test.cc',
1786 'http2/hpack/huffman/http2_hpack_huffman_decoder_test.cc',
1787 'http2/hpack/tools/hpack_block_builder.cc',
1788 'http2/hpack/tools/hpack_block_builder.h',
1789 'http2/hpack/tools/hpack_block_builder_test.cc',
1790 'http2/hpack/tools/hpack_example.cc',
1791 'http2/hpack/tools/hpack_example.h',
1792 'http2/http2_constants_test.cc',
1793 'http2/http2_constants_test_util.cc',
1794 'http2/http2_constants_test_util.h',
1795 'http2/http2_structures_test.cc',
1796 'http2/http2_structures_test_util.cc',
1797 'http2/http2_structures_test_util.h',
1798 'http2/tools/failure.cc',
1799 'http2/tools/failure.h',
1800 'http2/tools/http2_frame_builder.cc',
1801 'http2/tools/http2_frame_builder.h',
1802 'http2/tools/http2_random.cc',
1803 'http2/tools/http2_random.h',
1804 'http2/tools/random_decoder_test.cc',
1805 'http2/tools/random_decoder_test.h',
1806 'log/bounded_file_net_log_observer_unittest.cc', 1681 'log/bounded_file_net_log_observer_unittest.cc',
1807 'log/net_log_capture_mode_unittest.cc', 1682 'log/net_log_capture_mode_unittest.cc',
1808 'log/net_log_unittest.cc', 1683 'log/net_log_unittest.cc',
1809 'log/net_log_util_unittest.cc', 1684 'log/net_log_util_unittest.cc',
1810 'log/trace_net_log_observer_unittest.cc', 1685 'log/trace_net_log_observer_unittest.cc',
1811 'log/write_to_file_net_log_observer_unittest.cc', 1686 'log/write_to_file_net_log_observer_unittest.cc',
1812 'nqe/effective_connection_type_unittest.cc', 1687 'nqe/effective_connection_type_unittest.cc',
1813 'nqe/network_qualities_prefs_manager_unittest.cc', 1688 'nqe/network_qualities_prefs_manager_unittest.cc',
1814 'nqe/network_quality_estimator_unittest.cc', 1689 'nqe/network_quality_estimator_unittest.cc',
1815 'nqe/network_quality_store_unittest.cc', 1690 'nqe/network_quality_store_unittest.cc',
(...skipping 1686 matching lines...) Expand 10 before | Expand all | Expand 10 after
3502 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl', 3377 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl',
3503 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl', 3378 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl',
3504 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl', 3379 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl',
3505 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl', 3380 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl',
3506 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl', 3381 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl',
3507 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl', 3382 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl',
3508 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l', 3383 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l',
3509 ], 3384 ],
3510 } 3385 }
3511 } 3386 }
OLDNEW
« no previous file with comments | « net/http2/tools/random_decoder_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698