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

Side by Side Diff: net/BUILD.gn

Issue 2740833004: Reporting: Implement garbage collector. (Closed)
Patch Set: rebase Created 3 years, 8 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/reporting/reporting_context.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 1393 matching lines...) Expand 10 before | Expand all | Expand 10 after
1404 "reporting/reporting_client.cc", 1404 "reporting/reporting_client.cc",
1405 "reporting/reporting_client.h", 1405 "reporting/reporting_client.h",
1406 "reporting/reporting_context.cc", 1406 "reporting/reporting_context.cc",
1407 "reporting/reporting_context.h", 1407 "reporting/reporting_context.h",
1408 "reporting/reporting_delegate.cc", 1408 "reporting/reporting_delegate.cc",
1409 "reporting/reporting_delegate.h", 1409 "reporting/reporting_delegate.h",
1410 "reporting/reporting_delivery_agent.cc", 1410 "reporting/reporting_delivery_agent.cc",
1411 "reporting/reporting_delivery_agent.h", 1411 "reporting/reporting_delivery_agent.h",
1412 "reporting/reporting_endpoint_manager.cc", 1412 "reporting/reporting_endpoint_manager.cc",
1413 "reporting/reporting_endpoint_manager.h", 1413 "reporting/reporting_endpoint_manager.h",
1414 "reporting/reporting_garbage_collector.cc",
1415 "reporting/reporting_garbage_collector.h",
1414 "reporting/reporting_header_parser.cc", 1416 "reporting/reporting_header_parser.cc",
1415 "reporting/reporting_header_parser.h", 1417 "reporting/reporting_header_parser.h",
1416 "reporting/reporting_observer.cc", 1418 "reporting/reporting_observer.cc",
1417 "reporting/reporting_observer.h", 1419 "reporting/reporting_observer.h",
1418 "reporting/reporting_policy.cc", 1420 "reporting/reporting_policy.cc",
1419 "reporting/reporting_policy.h", 1421 "reporting/reporting_policy.h",
1420 "reporting/reporting_report.cc", 1422 "reporting/reporting_report.cc",
1421 "reporting/reporting_report.h", 1423 "reporting/reporting_report.h",
1422 "reporting/reporting_service.cc", 1424 "reporting/reporting_service.cc",
1423 "reporting/reporting_service.h", 1425 "reporting/reporting_service.h",
(...skipping 3209 matching lines...) Expand 10 before | Expand all | Expand 10 after
4633 "quic/test_tools/simulator/simulator.h", 4635 "quic/test_tools/simulator/simulator.h",
4634 "quic/test_tools/simulator/simulator_test.cc", 4636 "quic/test_tools/simulator/simulator_test.cc",
4635 "quic/test_tools/simulator/switch.cc", 4637 "quic/test_tools/simulator/switch.cc",
4636 "quic/test_tools/simulator/switch.h", 4638 "quic/test_tools/simulator/switch.h",
4637 "quic/test_tools/simulator/traffic_policer.cc", 4639 "quic/test_tools/simulator/traffic_policer.cc",
4638 "quic/test_tools/simulator/traffic_policer.h", 4640 "quic/test_tools/simulator/traffic_policer.h",
4639 "reporting/reporting_browsing_data_remover_unittest.cc", 4641 "reporting/reporting_browsing_data_remover_unittest.cc",
4640 "reporting/reporting_cache_unittest.cc", 4642 "reporting/reporting_cache_unittest.cc",
4641 "reporting/reporting_delivery_agent_unittest.cc", 4643 "reporting/reporting_delivery_agent_unittest.cc",
4642 "reporting/reporting_endpoint_manager_unittest.cc", 4644 "reporting/reporting_endpoint_manager_unittest.cc",
4645 "reporting/reporting_garbage_collector_unittest.cc",
4643 "reporting/reporting_header_parser_unittest.cc", 4646 "reporting/reporting_header_parser_unittest.cc",
4644 "reporting/reporting_service_unittest.cc", 4647 "reporting/reporting_service_unittest.cc",
4645 "reporting/reporting_test_util.cc", 4648 "reporting/reporting_test_util.cc",
4646 "reporting/reporting_test_util.h", 4649 "reporting/reporting_test_util.h",
4647 "reporting/reporting_uploader_unittest.cc", 4650 "reporting/reporting_uploader_unittest.cc",
4648 "sdch/sdch_owner_unittest.cc", 4651 "sdch/sdch_owner_unittest.cc",
4649 "socket/client_socket_pool_base_unittest.cc", 4652 "socket/client_socket_pool_base_unittest.cc",
4650 "socket/mock_client_socket_pool_manager.cc", 4653 "socket/mock_client_socket_pool_manager.cc",
4651 "socket/mock_client_socket_pool_manager.h", 4654 "socket/mock_client_socket_pool_manager.h",
4652 "socket/sequenced_socket_data_unittest.cc", 4655 "socket/sequenced_socket_data_unittest.cc",
(...skipping 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after
5735 ] 5738 ]
5736 deps = [ 5739 deps = [
5737 ":net_fuzzer_test_support", 5740 ":net_fuzzer_test_support",
5738 ":test_support", 5741 ":test_support",
5739 "//base", 5742 "//base",
5740 "//net", 5743 "//net",
5741 ] 5744 ]
5742 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 5745 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
5743 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 5746 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
5744 } 5747 }
OLDNEW
« no previous file with comments | « no previous file | net/reporting/reporting_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698