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

Side by Side Diff: base/BUILD.gn

Issue 2786373002: memory-infra: Add peak-detector skeleton. (Closed)
Patch Set: minor typos 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 | base/trace_event/memory_dump_manager_unittest.cc » ('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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after
1001 "trace_event/memory_dump_provider_info.cc", 1001 "trace_event/memory_dump_provider_info.cc",
1002 "trace_event/memory_dump_provider_info.h", 1002 "trace_event/memory_dump_provider_info.h",
1003 "trace_event/memory_dump_request_args.cc", 1003 "trace_event/memory_dump_request_args.cc",
1004 "trace_event/memory_dump_request_args.h", 1004 "trace_event/memory_dump_request_args.h",
1005 "trace_event/memory_dump_scheduler.cc", 1005 "trace_event/memory_dump_scheduler.cc",
1006 "trace_event/memory_dump_scheduler.h", 1006 "trace_event/memory_dump_scheduler.h",
1007 "trace_event/memory_dump_session_state.cc", 1007 "trace_event/memory_dump_session_state.cc",
1008 "trace_event/memory_dump_session_state.h", 1008 "trace_event/memory_dump_session_state.h",
1009 "trace_event/memory_infra_background_whitelist.cc", 1009 "trace_event/memory_infra_background_whitelist.cc",
1010 "trace_event/memory_infra_background_whitelist.h", 1010 "trace_event/memory_infra_background_whitelist.h",
1011 "trace_event/memory_peak_detector.cc",
1012 "trace_event/memory_peak_detector.h",
1011 "trace_event/memory_usage_estimator.cc", 1013 "trace_event/memory_usage_estimator.cc",
1012 "trace_event/memory_usage_estimator.h", 1014 "trace_event/memory_usage_estimator.h",
1013 "trace_event/process_memory_dump.cc", 1015 "trace_event/process_memory_dump.cc",
1014 "trace_event/process_memory_dump.h", 1016 "trace_event/process_memory_dump.h",
1015 "trace_event/process_memory_maps.cc", 1017 "trace_event/process_memory_maps.cc",
1016 "trace_event/process_memory_maps.h", 1018 "trace_event/process_memory_maps.h",
1017 "trace_event/process_memory_totals.cc", 1019 "trace_event/process_memory_totals.cc",
1018 "trace_event/process_memory_totals.h", 1020 "trace_event/process_memory_totals.h",
1019 "trace_event/trace_buffer.cc", 1021 "trace_event/trace_buffer.cc",
1020 "trace_event/trace_buffer.h", 1022 "trace_event/trace_buffer.h",
(...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after
2171 "trace_event/event_name_filter_unittest.cc", 2173 "trace_event/event_name_filter_unittest.cc",
2172 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc", 2174 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc",
2173 "trace_event/heap_profiler_allocation_register_unittest.cc", 2175 "trace_event/heap_profiler_allocation_register_unittest.cc",
2174 "trace_event/heap_profiler_heap_dump_writer_unittest.cc", 2176 "trace_event/heap_profiler_heap_dump_writer_unittest.cc",
2175 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc", 2177 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc",
2176 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc", 2178 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc",
2177 "trace_event/java_heap_dump_provider_android_unittest.cc", 2179 "trace_event/java_heap_dump_provider_android_unittest.cc",
2178 "trace_event/memory_allocator_dump_unittest.cc", 2180 "trace_event/memory_allocator_dump_unittest.cc",
2179 "trace_event/memory_dump_manager_unittest.cc", 2181 "trace_event/memory_dump_manager_unittest.cc",
2180 "trace_event/memory_dump_scheduler_unittest.cc", 2182 "trace_event/memory_dump_scheduler_unittest.cc",
2183 "trace_event/memory_peak_detector_unittest.cc",
2181 "trace_event/memory_usage_estimator_unittest.cc", 2184 "trace_event/memory_usage_estimator_unittest.cc",
2182 "trace_event/process_memory_dump_unittest.cc", 2185 "trace_event/process_memory_dump_unittest.cc",
2183 "trace_event/trace_category_unittest.cc", 2186 "trace_event/trace_category_unittest.cc",
2184 "trace_event/trace_config_unittest.cc", 2187 "trace_event/trace_config_unittest.cc",
2185 "trace_event/trace_event_argument_unittest.cc", 2188 "trace_event/trace_event_argument_unittest.cc",
2186 "trace_event/trace_event_filter_test_utils.cc", 2189 "trace_event/trace_event_filter_test_utils.cc",
2187 "trace_event/trace_event_filter_test_utils.h", 2190 "trace_event/trace_event_filter_test_utils.h",
2188 "trace_event/trace_event_synthetic_delay_unittest.cc", 2191 "trace_event/trace_event_synthetic_delay_unittest.cc",
2189 "trace_event/trace_event_system_stats_monitor_unittest.cc", 2192 "trace_event/trace_event_system_stats_monitor_unittest.cc",
2190 "trace_event/trace_event_unittest.cc", 2193 "trace_event/trace_event_unittest.cc",
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
2706 } 2709 }
2707 2710
2708 fuzzer_test("base_json_correctness_fuzzer") { 2711 fuzzer_test("base_json_correctness_fuzzer") {
2709 sources = [ 2712 sources = [
2710 "json/correctness_fuzzer.cc", 2713 "json/correctness_fuzzer.cc",
2711 ] 2714 ]
2712 deps = [ 2715 deps = [
2713 ":base", 2716 ":base",
2714 ] 2717 ]
2715 } 2718 }
OLDNEW
« no previous file with comments | « no previous file | base/trace_event/memory_dump_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698