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

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: Comment changed. 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') | no next file with comments »
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 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 "http/http_basic_state.cc", 832 "http/http_basic_state.cc",
833 "http/http_basic_state.h", 833 "http/http_basic_state.h",
834 "http/http_basic_stream.cc", 834 "http/http_basic_stream.cc",
835 "http/http_basic_stream.h", 835 "http/http_basic_stream.h",
836 "http/http_cache.cc", 836 "http/http_cache.cc",
837 "http/http_cache.h", 837 "http/http_cache.h",
838 "http/http_cache_lookup_manager.cc", 838 "http/http_cache_lookup_manager.cc",
839 "http/http_cache_lookup_manager.h", 839 "http/http_cache_lookup_manager.h",
840 "http/http_cache_transaction.cc", 840 "http/http_cache_transaction.cc",
841 "http/http_cache_transaction.h", 841 "http/http_cache_transaction.h",
842 "http/http_cache_writers.cc",
843 "http/http_cache_writers.h",
842 "http/http_chunked_decoder.cc", 844 "http/http_chunked_decoder.cc",
843 "http/http_chunked_decoder.h", 845 "http/http_chunked_decoder.h",
844 "http/http_content_disposition.cc", 846 "http/http_content_disposition.cc",
845 "http/http_content_disposition.h", 847 "http/http_content_disposition.h",
846 "http/http_network_layer.cc", 848 "http/http_network_layer.cc",
847 "http/http_network_layer.h", 849 "http/http_network_layer.h",
848 "http/http_network_session.cc", 850 "http/http_network_session.cc",
849 "http/http_network_session.h", 851 "http/http_network_session.h",
850 "http/http_network_session_peer.cc", 852 "http/http_network_session_peer.cc",
851 "http/http_network_session_peer.h", 853 "http/http_network_session_peer.h",
(...skipping 3852 matching lines...) Expand 10 before | Expand all | Expand 10 after
4704 "http/http_auth_handler_negotiate_unittest.cc", 4706 "http/http_auth_handler_negotiate_unittest.cc",
4705 "http/http_auth_handler_unittest.cc", 4707 "http/http_auth_handler_unittest.cc",
4706 "http/http_auth_multi_round_parse_unittest.cc", 4708 "http/http_auth_multi_round_parse_unittest.cc",
4707 "http/http_auth_preferences_unittest.cc", 4709 "http/http_auth_preferences_unittest.cc",
4708 "http/http_auth_sspi_win_unittest.cc", 4710 "http/http_auth_sspi_win_unittest.cc",
4709 "http/http_auth_unittest.cc", 4711 "http/http_auth_unittest.cc",
4710 "http/http_basic_state_unittest.cc", 4712 "http/http_basic_state_unittest.cc",
4711 "http/http_byte_range_unittest.cc", 4713 "http/http_byte_range_unittest.cc",
4712 "http/http_cache_lookup_manager_unittest.cc", 4714 "http/http_cache_lookup_manager_unittest.cc",
4713 "http/http_cache_unittest.cc", 4715 "http/http_cache_unittest.cc",
4716 "http/http_cache_writers_unittest.cc",
4714 "http/http_chunked_decoder_unittest.cc", 4717 "http/http_chunked_decoder_unittest.cc",
4715 "http/http_content_disposition_unittest.cc", 4718 "http/http_content_disposition_unittest.cc",
4716 "http/http_log_util_unittest.cc", 4719 "http/http_log_util_unittest.cc",
4717 "http/http_network_layer_unittest.cc", 4720 "http/http_network_layer_unittest.cc",
4718 "http/http_network_transaction_ssl_unittest.cc", 4721 "http/http_network_transaction_ssl_unittest.cc",
4719 "http/http_network_transaction_unittest.cc", 4722 "http/http_network_transaction_unittest.cc",
4720 "http/http_proxy_client_socket_pool_unittest.cc", 4723 "http/http_proxy_client_socket_pool_unittest.cc",
4721 "http/http_request_headers_unittest.cc", 4724 "http/http_request_headers_unittest.cc",
4722 "http/http_response_body_drainer_unittest.cc", 4725 "http/http_response_body_drainer_unittest.cc",
4723 "http/http_response_headers_unittest.cc", 4726 "http/http_response_headers_unittest.cc",
(...skipping 1368 matching lines...) Expand 10 before | Expand all | Expand 10 after
6092 ] 6095 ]
6093 deps = [ 6096 deps = [
6094 ":net_fuzzer_test_support", 6097 ":net_fuzzer_test_support",
6095 ":test_support", 6098 ":test_support",
6096 "//base", 6099 "//base",
6097 "//net", 6100 "//net",
6098 ] 6101 ]
6099 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 6102 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6100 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 6103 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6101 } 6104 }
OLDNEW
« no previous file with comments | « no previous file | net/http/http_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698