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

Side by Side Diff: net/BUILD.gn

Issue 2898983006: Fix and refactor HttpServerPropertiesImpl's alternative services brokenness expiration behavior (Closed)
Patch Set: Created 3 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
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 812 matching lines...) Expand 10 before | Expand all | Expand 10 after
823 "http/http_auth_multi_round_parse.cc", 823 "http/http_auth_multi_round_parse.cc",
824 "http/http_auth_multi_round_parse.h", 824 "http/http_auth_multi_round_parse.h",
825 "http/http_auth_preferences.cc", 825 "http/http_auth_preferences.cc",
826 "http/http_auth_preferences.h", 826 "http/http_auth_preferences.h",
827 "http/http_auth_sspi_win.cc", 827 "http/http_auth_sspi_win.cc",
828 "http/http_auth_sspi_win.h", 828 "http/http_auth_sspi_win.h",
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_broken_alternative_services_manager.cc",
834 "http/http_broken_alternative_services_manager.h",
833 "http/http_cache.cc", 835 "http/http_cache.cc",
834 "http/http_cache.h", 836 "http/http_cache.h",
835 "http/http_cache_lookup_manager.cc", 837 "http/http_cache_lookup_manager.cc",
836 "http/http_cache_lookup_manager.h", 838 "http/http_cache_lookup_manager.h",
837 "http/http_cache_transaction.cc", 839 "http/http_cache_transaction.cc",
838 "http/http_cache_transaction.h", 840 "http/http_cache_transaction.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",
(...skipping 3593 matching lines...) Expand 10 before | Expand all | Expand 10 after
4436 "http/http_auth_handler_factory_unittest.cc", 4438 "http/http_auth_handler_factory_unittest.cc",
4437 "http/http_auth_handler_mock.cc", 4439 "http/http_auth_handler_mock.cc",
4438 "http/http_auth_handler_mock.h", 4440 "http/http_auth_handler_mock.h",
4439 "http/http_auth_handler_negotiate_unittest.cc", 4441 "http/http_auth_handler_negotiate_unittest.cc",
4440 "http/http_auth_handler_unittest.cc", 4442 "http/http_auth_handler_unittest.cc",
4441 "http/http_auth_multi_round_parse_unittest.cc", 4443 "http/http_auth_multi_round_parse_unittest.cc",
4442 "http/http_auth_preferences_unittest.cc", 4444 "http/http_auth_preferences_unittest.cc",
4443 "http/http_auth_sspi_win_unittest.cc", 4445 "http/http_auth_sspi_win_unittest.cc",
4444 "http/http_auth_unittest.cc", 4446 "http/http_auth_unittest.cc",
4445 "http/http_basic_state_unittest.cc", 4447 "http/http_basic_state_unittest.cc",
4448 "http/http_broken_alternative_services_manager_unittest.cc",
4446 "http/http_byte_range_unittest.cc", 4449 "http/http_byte_range_unittest.cc",
4447 "http/http_cache_lookup_manager_unittest.cc", 4450 "http/http_cache_lookup_manager_unittest.cc",
4448 "http/http_cache_unittest.cc", 4451 "http/http_cache_unittest.cc",
4449 "http/http_chunked_decoder_unittest.cc", 4452 "http/http_chunked_decoder_unittest.cc",
4450 "http/http_content_disposition_unittest.cc", 4453 "http/http_content_disposition_unittest.cc",
4451 "http/http_log_util_unittest.cc", 4454 "http/http_log_util_unittest.cc",
4452 "http/http_network_layer_unittest.cc", 4455 "http/http_network_layer_unittest.cc",
4453 "http/http_network_transaction_ssl_unittest.cc", 4456 "http/http_network_transaction_ssl_unittest.cc",
4454 "http/http_network_transaction_unittest.cc", 4457 "http/http_network_transaction_unittest.cc",
4455 "http/http_proxy_client_socket_pool_unittest.cc", 4458 "http/http_proxy_client_socket_pool_unittest.cc",
(...skipping 1478 matching lines...) Expand 10 before | Expand all | Expand 10 after
5934 ] 5937 ]
5935 deps = [ 5938 deps = [
5936 ":net_fuzzer_test_support", 5939 ":net_fuzzer_test_support",
5937 ":test_support", 5940 ":test_support",
5938 "//base", 5941 "//base",
5939 "//net", 5942 "//net",
5940 ] 5943 ]
5941 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 5944 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
5942 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 5945 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
5943 } 5946 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698