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 "category_filter.cc", |
| 8 "category_filter.h", |
7 "java_heap_dump_provider_android.cc", | 9 "java_heap_dump_provider_android.cc", |
8 "java_heap_dump_provider_android.h", | 10 "java_heap_dump_provider_android.h", |
9 "memory_allocator_dump.cc", | 11 "memory_allocator_dump.cc", |
10 "memory_allocator_dump.h", | 12 "memory_allocator_dump.h", |
11 "memory_dump_manager.cc", | 13 "memory_dump_manager.cc", |
12 "memory_dump_manager.h", | 14 "memory_dump_manager.h", |
13 "memory_dump_provider.h", | 15 "memory_dump_provider.h", |
14 "memory_dump_request_args.h", | 16 "memory_dump_request_args.h", |
15 "memory_dump_session_state.cc", | 17 "memory_dump_session_state.cc", |
16 "memory_dump_session_state.h", | 18 "memory_dump_session_state.h", |
(...skipping 17 matching lines...) Expand all Loading... |
34 "trace_event_impl.h", | 36 "trace_event_impl.h", |
35 "trace_event_impl_constants.cc", | 37 "trace_event_impl_constants.cc", |
36 "trace_event_memory.cc", | 38 "trace_event_memory.cc", |
37 "trace_event_memory.h", | 39 "trace_event_memory.h", |
38 "trace_event_synthetic_delay.cc", | 40 "trace_event_synthetic_delay.cc", |
39 "trace_event_synthetic_delay.h", | 41 "trace_event_synthetic_delay.h", |
40 "trace_event_system_stats_monitor.cc", | 42 "trace_event_system_stats_monitor.cc", |
41 "trace_event_system_stats_monitor.h", | 43 "trace_event_system_stats_monitor.h", |
42 "trace_event_win.cc", | 44 "trace_event_win.cc", |
43 "trace_event_win.h", | 45 "trace_event_win.h", |
| 46 "trace_options.cc", |
| 47 "trace_options.h", |
44 "winheap_dump_provider_win.cc", | 48 "winheap_dump_provider_win.cc", |
45 "winheap_dump_provider_win.h", | 49 "winheap_dump_provider_win.h", |
46 ] | 50 ] |
47 | 51 |
48 if (is_nacl) { | 52 if (is_nacl) { |
49 sources -= [ | 53 sources -= [ |
50 "process_memory_totals_dump_provider.cc", | 54 "process_memory_totals_dump_provider.cc", |
51 "trace_event_system_stats_monitor.cc", | 55 "trace_event_system_stats_monitor.cc", |
52 ] | 56 ] |
53 } | 57 } |
(...skipping 24 matching lines...) Expand all Loading... |
78 "//base/memory", | 82 "//base/memory", |
79 "//base/process", | 83 "//base/process", |
80 ] | 84 ] |
81 | 85 |
82 visibility = [ "//base/*" ] | 86 visibility = [ "//base/*" ] |
83 } | 87 } |
84 | 88 |
85 source_set("trace_event_unittests") { | 89 source_set("trace_event_unittests") { |
86 testonly = true | 90 testonly = true |
87 sources = [ | 91 sources = [ |
| 92 "category_filter_unittest.cc", |
88 "java_heap_dump_provider_android_unittest.cc", | 93 "java_heap_dump_provider_android_unittest.cc", |
89 "memory_allocator_dump_unittest.cc", | 94 "memory_allocator_dump_unittest.cc", |
90 "memory_dump_manager_unittest.cc", | 95 "memory_dump_manager_unittest.cc", |
91 "process_memory_dump_unittest.cc", | 96 "process_memory_dump_unittest.cc", |
92 "process_memory_maps_dump_provider_unittest.cc", | 97 "process_memory_maps_dump_provider_unittest.cc", |
93 "process_memory_totals_dump_provider_unittest.cc", | 98 "process_memory_totals_dump_provider_unittest.cc", |
94 "trace_event_argument_unittest.cc", | 99 "trace_event_argument_unittest.cc", |
95 "trace_event_memory_unittest.cc", | 100 "trace_event_memory_unittest.cc", |
96 "trace_event_synthetic_delay_unittest.cc", | 101 "trace_event_synthetic_delay_unittest.cc", |
97 "trace_event_system_stats_monitor_unittest.cc", | 102 "trace_event_system_stats_monitor_unittest.cc", |
98 "trace_event_unittest.cc", | 103 "trace_event_unittest.cc", |
99 "trace_event_win_unittest.cc", | 104 "trace_event_win_unittest.cc", |
| 105 "trace_options_unittest.cc", |
100 "winheap_dump_provider_win_unittest.cc", | 106 "winheap_dump_provider_win_unittest.cc", |
101 ] | 107 ] |
102 | 108 |
103 deps = [ | 109 deps = [ |
104 "//base/test:test_support", | 110 "//base/test:test_support", |
105 "//testing/gmock", | 111 "//testing/gmock", |
106 "//testing/gtest", | 112 "//testing/gtest", |
107 ] | 113 ] |
108 } | 114 } |
OLD | NEW |