OLD | NEW |
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 source_set("trace_event") { | 5 source_set("trace_event") { |
6 sources = [ | 6 sources = [ |
7 "common/trace_event_common.h", | 7 "common/trace_event_common.h", |
8 "heap_profiler_allocation_context.cc", | 8 "heap_profiler_allocation_context.cc", |
9 "heap_profiler_allocation_context.h", | 9 "heap_profiler_allocation_context.h", |
10 "heap_profiler_allocation_context_tracker.cc", | 10 "heap_profiler_allocation_context_tracker.cc", |
11 "heap_profiler_allocation_context_tracker.h", | 11 "heap_profiler_allocation_context_tracker.h", |
12 "heap_profiler_allocation_register.cc", | 12 "heap_profiler_allocation_register.cc", |
13 "heap_profiler_allocation_register.h", | 13 "heap_profiler_allocation_register.h", |
14 "heap_profiler_allocation_register_posix.cc", | 14 "heap_profiler_allocation_register_posix.cc", |
15 "heap_profiler_allocation_register_win.cc", | 15 "heap_profiler_allocation_register_win.cc", |
16 "heap_profiler_heap_dump_writer.cc", | 16 "heap_profiler_heap_dump_writer.cc", |
17 "heap_profiler_heap_dump_writer.h", | 17 "heap_profiler_heap_dump_writer.h", |
18 "heap_profiler_stack_frame_deduplicator.cc", | 18 "heap_profiler_stack_frame_deduplicator.cc", |
19 "heap_profiler_stack_frame_deduplicator.h", | 19 "heap_profiler_stack_frame_deduplicator.h", |
| 20 "heap_profiler_type_name_deduplicator.cc", |
| 21 "heap_profiler_type_name_deduplicator.h", |
20 "java_heap_dump_provider_android.cc", | 22 "java_heap_dump_provider_android.cc", |
21 "java_heap_dump_provider_android.h", | 23 "java_heap_dump_provider_android.h", |
22 "memory_allocator_dump.cc", | 24 "memory_allocator_dump.cc", |
23 "memory_allocator_dump.h", | 25 "memory_allocator_dump.h", |
24 "memory_allocator_dump_guid.cc", | 26 "memory_allocator_dump_guid.cc", |
25 "memory_allocator_dump_guid.h", | 27 "memory_allocator_dump_guid.h", |
26 "memory_dump_manager.cc", | 28 "memory_dump_manager.cc", |
27 "memory_dump_manager.h", | 29 "memory_dump_manager.h", |
28 "memory_dump_provider.h", | 30 "memory_dump_provider.h", |
29 "memory_dump_request_args.cc", | 31 "memory_dump_request_args.cc", |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 visibility = [ "//base/*" ] | 111 visibility = [ "//base/*" ] |
110 } | 112 } |
111 | 113 |
112 source_set("trace_event_unittests") { | 114 source_set("trace_event_unittests") { |
113 testonly = true | 115 testonly = true |
114 sources = [ | 116 sources = [ |
115 "heap_profiler_allocation_context_tracker_unittest.cc", | 117 "heap_profiler_allocation_context_tracker_unittest.cc", |
116 "heap_profiler_allocation_register_unittest.cc", | 118 "heap_profiler_allocation_register_unittest.cc", |
117 "heap_profiler_heap_dump_writer_unittest.cc", | 119 "heap_profiler_heap_dump_writer_unittest.cc", |
118 "heap_profiler_stack_frame_deduplicator_unittest.cc", | 120 "heap_profiler_stack_frame_deduplicator_unittest.cc", |
| 121 "heap_profiler_type_name_deduplicator_unittest.cc", |
119 "java_heap_dump_provider_android_unittest.cc", | 122 "java_heap_dump_provider_android_unittest.cc", |
120 "memory_allocator_dump_unittest.cc", | 123 "memory_allocator_dump_unittest.cc", |
121 "memory_dump_manager_unittest.cc", | 124 "memory_dump_manager_unittest.cc", |
122 "process_memory_dump_unittest.cc", | 125 "process_memory_dump_unittest.cc", |
123 "process_memory_totals_dump_provider_unittest.cc", | 126 "process_memory_totals_dump_provider_unittest.cc", |
124 "trace_config_memory_test_util.h", | 127 "trace_config_memory_test_util.h", |
125 "trace_config_unittest.cc", | 128 "trace_config_unittest.cc", |
126 "trace_event_argument_unittest.cc", | 129 "trace_event_argument_unittest.cc", |
127 "trace_event_memory_unittest.cc", | 130 "trace_event_memory_unittest.cc", |
128 "trace_event_synthetic_delay_unittest.cc", | 131 "trace_event_synthetic_delay_unittest.cc", |
129 "trace_event_system_stats_monitor_unittest.cc", | 132 "trace_event_system_stats_monitor_unittest.cc", |
130 "trace_event_unittest.cc", | 133 "trace_event_unittest.cc", |
131 "winheap_dump_provider_win_unittest.cc", | 134 "winheap_dump_provider_win_unittest.cc", |
132 ] | 135 ] |
133 | 136 |
134 if (is_linux || is_android) { | 137 if (is_linux || is_android) { |
135 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] | 138 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] |
136 } | 139 } |
137 | 140 |
138 deps = [ | 141 deps = [ |
139 "//base/test:test_support", | 142 "//base/test:test_support", |
140 "//testing/gmock", | 143 "//testing/gmock", |
141 "//testing/gtest", | 144 "//testing/gtest", |
142 ] | 145 ] |
143 } | 146 } |
OLD | NEW |