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 "java_heap_dump_provider_android.cc", | 7 "java_heap_dump_provider_android.cc", |
8 "java_heap_dump_provider_android.h", | 8 "java_heap_dump_provider_android.h", |
9 "memory_allocator_dump.cc", | 9 "memory_allocator_dump.cc", |
10 "memory_allocator_dump.h", | 10 "memory_allocator_dump.h", |
11 "memory_allocator_dump_guid.cc", | 11 "memory_allocator_dump_guid.cc", |
12 "memory_allocator_dump_guid.h", | 12 "memory_allocator_dump_guid.h", |
13 "memory_dump_manager.cc", | 13 "memory_dump_manager.cc", |
14 "memory_dump_manager.h", | 14 "memory_dump_manager.h", |
15 "memory_dump_provider.h", | 15 "memory_dump_provider.h", |
16 "memory_dump_request_args.h", | 16 "memory_dump_request_args.h", |
17 "memory_dump_session_state.cc", | 17 "memory_dump_session_state.cc", |
18 "memory_dump_session_state.h", | 18 "memory_dump_session_state.h", |
19 "process_memory_dump.cc", | 19 "process_memory_dump.cc", |
20 "process_memory_dump.h", | 20 "process_memory_dump.h", |
21 "process_memory_maps.cc", | 21 "process_memory_maps.cc", |
22 "process_memory_maps.h", | 22 "process_memory_maps.h", |
23 "process_memory_maps_dump_provider.cc", | 23 "process_memory_maps_dump_provider.cc", |
24 "process_memory_maps_dump_provider.h", | 24 "process_memory_maps_dump_provider.h", |
25 "process_memory_totals.cc", | 25 "process_memory_totals.cc", |
26 "process_memory_totals.h", | 26 "process_memory_totals.h", |
27 "process_memory_totals_dump_provider.cc", | 27 "process_memory_totals_dump_provider.cc", |
28 "process_memory_totals_dump_provider.h", | 28 "process_memory_totals_dump_provider.h", |
| 29 "startup_tracing.cc", |
| 30 "startup_tracing.h", |
29 "trace_config.cc", | 31 "trace_config.cc", |
30 "trace_config.h", | 32 "trace_config.h", |
31 "trace_event.h", | 33 "trace_event.h", |
32 "trace_event_android.cc", | 34 "trace_event_android.cc", |
33 "trace_event_argument.cc", | 35 "trace_event_argument.cc", |
34 "trace_event_argument.h", | 36 "trace_event_argument.h", |
35 "trace_event_etw_export_win.cc", | 37 "trace_event_etw_export_win.cc", |
36 "trace_event_etw_export_win.h", | 38 "trace_event_etw_export_win.h", |
37 "trace_event_impl.cc", | 39 "trace_event_impl.cc", |
38 "trace_event_impl.h", | 40 "trace_event_impl.h", |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 "trace_event_win_unittest.cc", | 108 "trace_event_win_unittest.cc", |
107 "winheap_dump_provider_win_unittest.cc", | 109 "winheap_dump_provider_win_unittest.cc", |
108 ] | 110 ] |
109 | 111 |
110 deps = [ | 112 deps = [ |
111 "//base/test:test_support", | 113 "//base/test:test_support", |
112 "//testing/gmock", | 114 "//testing/gmock", |
113 "//testing/gtest", | 115 "//testing/gtest", |
114 ] | 116 ] |
115 } | 117 } |
OLD | NEW |