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

Side by Side Diff: base/BUILD.gn

Issue 2440393002: [tracing] Implement composable memory usage estimators. (Closed)
Patch Set: Use ARCH_CPU_64_BITS instead of __LP64__ Created 4 years, 1 month 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 # 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 913 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 "trace_event/memory_allocator_dump_guid.h", 924 "trace_event/memory_allocator_dump_guid.h",
925 "trace_event/memory_dump_manager.cc", 925 "trace_event/memory_dump_manager.cc",
926 "trace_event/memory_dump_manager.h", 926 "trace_event/memory_dump_manager.h",
927 "trace_event/memory_dump_provider.h", 927 "trace_event/memory_dump_provider.h",
928 "trace_event/memory_dump_request_args.cc", 928 "trace_event/memory_dump_request_args.cc",
929 "trace_event/memory_dump_request_args.h", 929 "trace_event/memory_dump_request_args.h",
930 "trace_event/memory_dump_session_state.cc", 930 "trace_event/memory_dump_session_state.cc",
931 "trace_event/memory_dump_session_state.h", 931 "trace_event/memory_dump_session_state.h",
932 "trace_event/memory_infra_background_whitelist.cc", 932 "trace_event/memory_infra_background_whitelist.cc",
933 "trace_event/memory_infra_background_whitelist.h", 933 "trace_event/memory_infra_background_whitelist.h",
934 "trace_event/memory_usage_estimator.h",
934 "trace_event/process_memory_dump.cc", 935 "trace_event/process_memory_dump.cc",
935 "trace_event/process_memory_dump.h", 936 "trace_event/process_memory_dump.h",
936 "trace_event/process_memory_maps.cc", 937 "trace_event/process_memory_maps.cc",
937 "trace_event/process_memory_maps.h", 938 "trace_event/process_memory_maps.h",
938 "trace_event/process_memory_totals.cc", 939 "trace_event/process_memory_totals.cc",
939 "trace_event/process_memory_totals.h", 940 "trace_event/process_memory_totals.h",
940 "trace_event/trace_buffer.cc", 941 "trace_event/trace_buffer.cc",
941 "trace_event/trace_buffer.h", 942 "trace_event/trace_buffer.h",
942 "trace_event/trace_config.cc", 943 "trace_event/trace_config.cc",
943 "trace_event/trace_config.h", 944 "trace_event/trace_config.h",
(...skipping 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after
1974 "tools_sanity_unittest.cc", 1975 "tools_sanity_unittest.cc",
1975 "trace_event/blame_context_unittest.cc", 1976 "trace_event/blame_context_unittest.cc",
1976 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc", 1977 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc",
1977 "trace_event/heap_profiler_allocation_register_unittest.cc", 1978 "trace_event/heap_profiler_allocation_register_unittest.cc",
1978 "trace_event/heap_profiler_heap_dump_writer_unittest.cc", 1979 "trace_event/heap_profiler_heap_dump_writer_unittest.cc",
1979 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc", 1980 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc",
1980 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc", 1981 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc",
1981 "trace_event/java_heap_dump_provider_android_unittest.cc", 1982 "trace_event/java_heap_dump_provider_android_unittest.cc",
1982 "trace_event/memory_allocator_dump_unittest.cc", 1983 "trace_event/memory_allocator_dump_unittest.cc",
1983 "trace_event/memory_dump_manager_unittest.cc", 1984 "trace_event/memory_dump_manager_unittest.cc",
1985 "trace_event/memory_usage_estimator_unittest.cc",
1984 "trace_event/process_memory_dump_unittest.cc", 1986 "trace_event/process_memory_dump_unittest.cc",
1985 "trace_event/trace_config_unittest.cc", 1987 "trace_event/trace_config_unittest.cc",
1986 "trace_event/trace_event_argument_unittest.cc", 1988 "trace_event/trace_event_argument_unittest.cc",
1987 "trace_event/trace_event_synthetic_delay_unittest.cc", 1989 "trace_event/trace_event_synthetic_delay_unittest.cc",
1988 "trace_event/trace_event_system_stats_monitor_unittest.cc", 1990 "trace_event/trace_event_system_stats_monitor_unittest.cc",
1989 "trace_event/trace_event_unittest.cc", 1991 "trace_event/trace_event_unittest.cc",
1990 "tracked_objects_unittest.cc", 1992 "tracked_objects_unittest.cc",
1991 "tuple_unittest.cc", 1993 "tuple_unittest.cc",
1992 "unguessable_token_unittest.cc", 1994 "unguessable_token_unittest.cc",
1993 "values_unittest.cc", 1995 "values_unittest.cc",
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
2467 } 2469 }
2468 2470
2469 fuzzer_test("base_json_correctness_fuzzer") { 2471 fuzzer_test("base_json_correctness_fuzzer") {
2470 sources = [ 2472 sources = [
2471 "json/correctness_fuzzer.cc", 2473 "json/correctness_fuzzer.cc",
2472 ] 2474 ]
2473 deps = [ 2475 deps = [
2474 ":base", 2476 ":base",
2475 ] 2477 ]
2476 } 2478 }
OLDNEW
« no previous file with comments | « no previous file | base/trace_event/memory_usage_estimator.h » ('j') | base/trace_event/memory_usage_estimator.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698