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

Side by Side Diff: net/net.gypi

Issue 243153003: HPACK optimal Huffman code instrumentation and UMA collection. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review feedback & missing license header. 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 | « net/http/http_network_transaction.cc ('k') | net/spdy/hpack_encoder.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 998 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_entry.cc', 1015 'spdy/hpack_entry.cc',
1016 'spdy/hpack_entry.h', 1016 'spdy/hpack_entry.h',
1017 'spdy/hpack_header_table.cc', 1017 'spdy/hpack_header_table.cc',
1018 'spdy/hpack_header_table.h', 1018 'spdy/hpack_header_table.h',
1019 'spdy/hpack_huffman_aggregator.cc',
1020 'spdy/hpack_huffman_aggregator.h',
1019 'spdy/hpack_huffman_table.cc', 1021 'spdy/hpack_huffman_table.cc',
1020 'spdy/hpack_huffman_table.h', 1022 'spdy/hpack_huffman_table.h',
1021 'spdy/hpack_input_stream.cc', 1023 'spdy/hpack_input_stream.cc',
1022 'spdy/hpack_input_stream.h', 1024 'spdy/hpack_input_stream.h',
1023 'spdy/hpack_output_stream.cc', 1025 'spdy/hpack_output_stream.cc',
1024 'spdy/hpack_output_stream.h', 1026 'spdy/hpack_output_stream.h',
1025 'spdy/hpack_string_util.cc', 1027 'spdy/hpack_string_util.cc',
1026 'spdy/hpack_string_util.h', 1028 'spdy/hpack_string_util.h',
1027 'spdy/spdy_bitmasks.h', 1029 'spdy/spdy_bitmasks.h',
1028 'spdy/spdy_buffer.cc', 1030 'spdy/spdy_buffer.cc',
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
1562 'socket/transport_client_socket_pool_unittest.cc', 1564 'socket/transport_client_socket_pool_unittest.cc',
1563 'socket/transport_client_socket_unittest.cc', 1565 'socket/transport_client_socket_unittest.cc',
1564 'socket/unix_domain_socket_posix_unittest.cc', 1566 'socket/unix_domain_socket_posix_unittest.cc',
1565 'socket_stream/socket_stream_metrics_unittest.cc', 1567 'socket_stream/socket_stream_metrics_unittest.cc',
1566 'socket_stream/socket_stream_unittest.cc', 1568 'socket_stream/socket_stream_unittest.cc',
1567 'spdy/buffered_spdy_framer_unittest.cc', 1569 'spdy/buffered_spdy_framer_unittest.cc',
1568 'spdy/hpack_decoder_test.cc', 1570 'spdy/hpack_decoder_test.cc',
1569 'spdy/hpack_encoder_test.cc', 1571 'spdy/hpack_encoder_test.cc',
1570 'spdy/hpack_entry_test.cc', 1572 'spdy/hpack_entry_test.cc',
1571 'spdy/hpack_header_table_test.cc', 1573 'spdy/hpack_header_table_test.cc',
1574 'spdy/hpack_huffman_aggregator_test.cc',
1572 'spdy/hpack_huffman_table_test.cc', 1575 'spdy/hpack_huffman_table_test.cc',
1573 'spdy/hpack_input_stream_test.cc', 1576 'spdy/hpack_input_stream_test.cc',
1574 'spdy/hpack_output_stream_test.cc', 1577 'spdy/hpack_output_stream_test.cc',
1575 'spdy/hpack_round_trip_test.cc', 1578 'spdy/hpack_round_trip_test.cc',
1576 'spdy/hpack_string_util_test.cc', 1579 'spdy/hpack_string_util_test.cc',
1577 'spdy/mock_spdy_framer_visitor.cc', 1580 'spdy/mock_spdy_framer_visitor.cc',
1578 'spdy/mock_spdy_framer_visitor.h', 1581 'spdy/mock_spdy_framer_visitor.h',
1579 'spdy/spdy_buffer_unittest.cc', 1582 'spdy/spdy_buffer_unittest.cc',
1580 'spdy/spdy_frame_builder_test.cc', 1583 'spdy/spdy_frame_builder_test.cc',
1581 'spdy/spdy_frame_reader_test.cc', 1584 'spdy/spdy_frame_reader_test.cc',
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
1708 'tools/quic/test_tools/quic_test_client.h', 1711 'tools/quic/test_tools/quic_test_client.h',
1709 'tools/quic/test_tools/quic_test_utils.cc', 1712 'tools/quic/test_tools/quic_test_utils.cc',
1710 'tools/quic/test_tools/quic_test_utils.h', 1713 'tools/quic/test_tools/quic_test_utils.h',
1711 'tools/quic/test_tools/server_thread.h', 1714 'tools/quic/test_tools/server_thread.h',
1712 'tools/quic/test_tools/server_thread.cc', 1715 'tools/quic/test_tools/server_thread.cc',
1713 'tools/quic/test_tools/simple_client.h', 1716 'tools/quic/test_tools/simple_client.h',
1714 'tools/quic/test_tools/simple_client.cc', 1717 'tools/quic/test_tools/simple_client.cc',
1715 ], 1718 ],
1716 } 1719 }
1717 } 1720 }
OLDNEW
« no previous file with comments | « net/http/http_network_transaction.cc ('k') | net/spdy/hpack_encoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698