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

Side by Side Diff: base/trace_event/trace_event.gypi

Issue 1467453003: [Tracing] Make heap profiler type info a string (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'variables': { 5 'variables': {
6 'trace_event_sources' : [ 6 'trace_event_sources' : [
7 'trace_event/common/trace_event_common.h', 7 'trace_event/common/trace_event_common.h',
8 'trace_event/heap_profiler_allocation_context.cc', 8 'trace_event/heap_profiler_allocation_context.cc',
9 'trace_event/heap_profiler_allocation_context.h', 9 'trace_event/heap_profiler_allocation_context.h',
10 'trace_event/heap_profiler_allocation_context_tracker.cc', 10 'trace_event/heap_profiler_allocation_context_tracker.cc',
11 'trace_event/heap_profiler_allocation_context_tracker.h', 11 'trace_event/heap_profiler_allocation_context_tracker.h',
12 'trace_event/heap_profiler_allocation_register.cc', 12 'trace_event/heap_profiler_allocation_register.cc',
13 'trace_event/heap_profiler_allocation_register_posix.cc', 13 'trace_event/heap_profiler_allocation_register_posix.cc',
14 'trace_event/heap_profiler_allocation_register_win.cc', 14 'trace_event/heap_profiler_allocation_register_win.cc',
15 'trace_event/heap_profiler_allocation_register.h', 15 'trace_event/heap_profiler_allocation_register.h',
16 'trace_event/heap_profiler_heap_dump_writer.cc', 16 'trace_event/heap_profiler_heap_dump_writer.cc',
17 'trace_event/heap_profiler_heap_dump_writer.h', 17 'trace_event/heap_profiler_heap_dump_writer.h',
18 'trace_event/heap_profiler_stack_frame_deduplicator.cc', 18 'trace_event/heap_profiler_stack_frame_deduplicator.cc',
19 'trace_event/heap_profiler_stack_frame_deduplicator.h', 19 'trace_event/heap_profiler_stack_frame_deduplicator.h',
20 'trace_event/heap_profiler_type_name_deduplicator.cc',
21 'trace_event/heap_profiler_type_name_deduplicator.h',
20 'trace_event/java_heap_dump_provider_android.cc', 22 'trace_event/java_heap_dump_provider_android.cc',
21 'trace_event/java_heap_dump_provider_android.h', 23 'trace_event/java_heap_dump_provider_android.h',
22 'trace_event/memory_allocator_dump.cc', 24 'trace_event/memory_allocator_dump.cc',
23 'trace_event/memory_allocator_dump.h', 25 'trace_event/memory_allocator_dump.h',
24 'trace_event/memory_allocator_dump_guid.cc', 26 'trace_event/memory_allocator_dump_guid.cc',
25 'trace_event/memory_allocator_dump_guid.h', 27 'trace_event/memory_allocator_dump_guid.h',
26 'trace_event/memory_dump_manager.cc', 28 'trace_event/memory_dump_manager.cc',
27 'trace_event/memory_dump_manager.h', 29 'trace_event/memory_dump_manager.h',
28 'trace_event/memory_dump_provider.h', 30 'trace_event/memory_dump_provider.h',
29 'trace_event/memory_dump_request_args.cc', 31 'trace_event/memory_dump_request_args.cc',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'trace_event/trace_sampling_thread.cc', 67 'trace_event/trace_sampling_thread.cc',
66 'trace_event/trace_sampling_thread.h', 68 'trace_event/trace_sampling_thread.h',
67 'trace_event/winheap_dump_provider_win.cc', 69 'trace_event/winheap_dump_provider_win.cc',
68 'trace_event/winheap_dump_provider_win.h', 70 'trace_event/winheap_dump_provider_win.h',
69 ], 71 ],
70 'trace_event_test_sources' : [ 72 'trace_event_test_sources' : [
71 'trace_event/heap_profiler_allocation_context_tracker_unittest.cc', 73 'trace_event/heap_profiler_allocation_context_tracker_unittest.cc',
72 'trace_event/heap_profiler_allocation_register_unittest.cc', 74 'trace_event/heap_profiler_allocation_register_unittest.cc',
73 'trace_event/heap_profiler_heap_dump_writer_unittest.cc', 75 'trace_event/heap_profiler_heap_dump_writer_unittest.cc',
74 'trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc', 76 'trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc',
77 'trace_event/heap_profiler_type_name_deduplicator_unittest.cc',
75 'trace_event/java_heap_dump_provider_android_unittest.cc', 78 'trace_event/java_heap_dump_provider_android_unittest.cc',
76 'trace_event/memory_allocator_dump_unittest.cc', 79 'trace_event/memory_allocator_dump_unittest.cc',
77 'trace_event/memory_dump_manager_unittest.cc', 80 'trace_event/memory_dump_manager_unittest.cc',
78 'trace_event/process_memory_dump_unittest.cc', 81 'trace_event/process_memory_dump_unittest.cc',
79 'trace_event/process_memory_totals_dump_provider_unittest.cc', 82 'trace_event/process_memory_totals_dump_provider_unittest.cc',
80 'trace_event/trace_config_memory_test_util.h', 83 'trace_event/trace_config_memory_test_util.h',
81 'trace_event/trace_config_unittest.cc', 84 'trace_event/trace_config_unittest.cc',
82 'trace_event/trace_event_argument_unittest.cc', 85 'trace_event/trace_event_argument_unittest.cc',
83 'trace_event/trace_event_memory_unittest.cc', 86 'trace_event/trace_event_memory_unittest.cc',
84 'trace_event/trace_event_synthetic_delay_unittest.cc', 87 'trace_event/trace_event_synthetic_delay_unittest.cc',
(...skipping 12 matching lines...) Expand all
97 'trace_event_sources': [ 100 'trace_event_sources': [
98 'trace_event/process_memory_maps_dump_provider.cc', 101 'trace_event/process_memory_maps_dump_provider.cc',
99 ], 102 ],
100 'trace_event_test_sources' : [ 103 'trace_event_test_sources' : [
101 'trace_event/process_memory_maps_dump_provider_unittest.cc', 104 'trace_event/process_memory_maps_dump_provider_unittest.cc',
102 ], 105 ],
103 }], 106 }],
104 ], 107 ],
105 }, 108 },
106 } 109 }
OLDNEW
« no previous file with comments | « base/trace_event/memory_dump_session_state.cc ('k') | base/trace_event/winheap_dump_provider_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698