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", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 "trace_event_memory_overhead.h", | 57 "trace_event_memory_overhead.h", |
58 "trace_event_synthetic_delay.cc", | 58 "trace_event_synthetic_delay.cc", |
59 "trace_event_synthetic_delay.h", | 59 "trace_event_synthetic_delay.h", |
60 "trace_event_system_stats_monitor.cc", | 60 "trace_event_system_stats_monitor.cc", |
61 "trace_event_system_stats_monitor.h", | 61 "trace_event_system_stats_monitor.h", |
62 "trace_log.cc", | 62 "trace_log.cc", |
63 "trace_log.h", | 63 "trace_log.h", |
64 "trace_log_constants.cc", | 64 "trace_log_constants.cc", |
65 "trace_sampling_thread.cc", | 65 "trace_sampling_thread.cc", |
66 "trace_sampling_thread.h", | 66 "trace_sampling_thread.h", |
| 67 "tracing_agent.cc", |
| 68 "tracing_agent.h", |
67 "winheap_dump_provider_win.cc", | 69 "winheap_dump_provider_win.cc", |
68 "winheap_dump_provider_win.h", | 70 "winheap_dump_provider_win.h", |
69 ] | 71 ] |
70 | 72 |
71 if (is_nacl) { | 73 if (is_nacl) { |
72 sources -= [ | 74 sources -= [ |
73 "process_memory_totals_dump_provider.cc", | 75 "process_memory_totals_dump_provider.cc", |
74 "trace_event_system_stats_monitor.cc", | 76 "trace_event_system_stats_monitor.cc", |
75 ] | 77 ] |
76 } | 78 } |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 if (is_linux || is_android) { | 136 if (is_linux || is_android) { |
135 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] | 137 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] |
136 } | 138 } |
137 | 139 |
138 deps = [ | 140 deps = [ |
139 "//base/test:test_support", | 141 "//base/test:test_support", |
140 "//testing/gmock", | 142 "//testing/gmock", |
141 "//testing/gtest", | 143 "//testing/gtest", |
142 ] | 144 ] |
143 } | 145 } |
OLD | NEW |