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

Side by Side Diff: net/BUILD.gn

Issue 2886483002: Adds a new class HttpCache::Writers for multiple cache transactions reading from the network. (Closed)
Patch Set: Fix test class memory leak Created 3 years, 5 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/http/http_cache.h » ('j') | net/http/http_cache.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 "http/http_basic_state.cc", 829 "http/http_basic_state.cc",
830 "http/http_basic_state.h", 830 "http/http_basic_state.h",
831 "http/http_basic_stream.cc", 831 "http/http_basic_stream.cc",
832 "http/http_basic_stream.h", 832 "http/http_basic_stream.h",
833 "http/http_cache.cc", 833 "http/http_cache.cc",
834 "http/http_cache.h", 834 "http/http_cache.h",
835 "http/http_cache_lookup_manager.cc", 835 "http/http_cache_lookup_manager.cc",
836 "http/http_cache_lookup_manager.h", 836 "http/http_cache_lookup_manager.h",
837 "http/http_cache_transaction.cc", 837 "http/http_cache_transaction.cc",
838 "http/http_cache_transaction.h", 838 "http/http_cache_transaction.h",
839 "http/http_cache_writers.cc",
840 "http/http_cache_writers.h",
839 "http/http_chunked_decoder.cc", 841 "http/http_chunked_decoder.cc",
840 "http/http_chunked_decoder.h", 842 "http/http_chunked_decoder.h",
841 "http/http_content_disposition.cc", 843 "http/http_content_disposition.cc",
842 "http/http_content_disposition.h", 844 "http/http_content_disposition.h",
843 "http/http_network_layer.cc", 845 "http/http_network_layer.cc",
844 "http/http_network_layer.h", 846 "http/http_network_layer.h",
845 "http/http_network_session.cc", 847 "http/http_network_session.cc",
846 "http/http_network_session.h", 848 "http/http_network_session.h",
847 "http/http_network_session_peer.cc", 849 "http/http_network_session_peer.cc",
848 "http/http_network_session_peer.h", 850 "http/http_network_session_peer.h",
(...skipping 3815 matching lines...) Expand 10 before | Expand all | Expand 10 after
4664 "http/http_auth_handler_negotiate_unittest.cc", 4666 "http/http_auth_handler_negotiate_unittest.cc",
4665 "http/http_auth_handler_unittest.cc", 4667 "http/http_auth_handler_unittest.cc",
4666 "http/http_auth_multi_round_parse_unittest.cc", 4668 "http/http_auth_multi_round_parse_unittest.cc",
4667 "http/http_auth_preferences_unittest.cc", 4669 "http/http_auth_preferences_unittest.cc",
4668 "http/http_auth_sspi_win_unittest.cc", 4670 "http/http_auth_sspi_win_unittest.cc",
4669 "http/http_auth_unittest.cc", 4671 "http/http_auth_unittest.cc",
4670 "http/http_basic_state_unittest.cc", 4672 "http/http_basic_state_unittest.cc",
4671 "http/http_byte_range_unittest.cc", 4673 "http/http_byte_range_unittest.cc",
4672 "http/http_cache_lookup_manager_unittest.cc", 4674 "http/http_cache_lookup_manager_unittest.cc",
4673 "http/http_cache_unittest.cc", 4675 "http/http_cache_unittest.cc",
4676 "http/http_cache_writers_unittest.cc",
4674 "http/http_chunked_decoder_unittest.cc", 4677 "http/http_chunked_decoder_unittest.cc",
4675 "http/http_content_disposition_unittest.cc", 4678 "http/http_content_disposition_unittest.cc",
4676 "http/http_log_util_unittest.cc", 4679 "http/http_log_util_unittest.cc",
4677 "http/http_network_layer_unittest.cc", 4680 "http/http_network_layer_unittest.cc",
4678 "http/http_network_transaction_ssl_unittest.cc", 4681 "http/http_network_transaction_ssl_unittest.cc",
4679 "http/http_network_transaction_unittest.cc", 4682 "http/http_network_transaction_unittest.cc",
4680 "http/http_proxy_client_socket_pool_unittest.cc", 4683 "http/http_proxy_client_socket_pool_unittest.cc",
4681 "http/http_request_headers_unittest.cc", 4684 "http/http_request_headers_unittest.cc",
4682 "http/http_response_body_drainer_unittest.cc", 4685 "http/http_response_body_drainer_unittest.cc",
4683 "http/http_response_headers_unittest.cc", 4686 "http/http_response_headers_unittest.cc",
(...skipping 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after
6037 ] 6040 ]
6038 deps = [ 6041 deps = [
6039 ":net_fuzzer_test_support", 6042 ":net_fuzzer_test_support",
6040 ":test_support", 6043 ":test_support",
6041 "//base", 6044 "//base",
6042 "//net", 6045 "//net",
6043 ] 6046 ]
6044 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 6047 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6045 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 6048 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6046 } 6049 }
OLDNEW
« no previous file with comments | « no previous file | net/http/http_cache.h » ('j') | net/http/http_cache.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698