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 "memory_allocator_attributes.h", | 7 "memory_allocator_attributes.h", |
8 "memory_allocator_dump.cc", | 8 "memory_allocator_dump.cc", |
9 "memory_allocator_dump.h", | 9 "memory_allocator_dump.h", |
10 "memory_dump_manager.cc", | 10 "memory_dump_manager.cc", |
11 "memory_dump_manager.h", | 11 "memory_dump_manager.h", |
12 "memory_dump_provider.cc", | 12 "memory_dump_provider.cc", |
13 "memory_dump_provider.h", | 13 "memory_dump_provider.h", |
14 "memory_dump_request_args.h", | 14 "memory_dump_request_args.h", |
15 "process_memory_dump.cc", | 15 "process_memory_dump.cc", |
16 "process_memory_dump.h", | 16 "process_memory_dump.h", |
17 "process_memory_maps.cc", | 17 "process_memory_maps.cc", |
18 "process_memory_maps.h", | 18 "process_memory_maps.h", |
19 "process_memory_maps_dump_provider.cc", | 19 "process_memory_maps_dump_provider.cc", |
20 "process_memory_maps_dump_provider.h", | 20 "process_memory_maps_dump_provider.h", |
21 "process_memory_totals.cc", | 21 "process_memory_totals.cc", |
22 "process_memory_totals.h", | 22 "process_memory_totals.h", |
23 "process_memory_totals_dump_provider.cc", | 23 "process_memory_totals_dump_provider.cc", |
24 "process_memory_totals_dump_provider.h", | 24 "process_memory_totals_dump_provider.h", |
25 "trace_event.h", | 25 "trace_event.h", |
26 "trace_event_android.cc", | 26 "trace_event_android.cc", |
27 "trace_event_argument.cc", | 27 "trace_event_argument.cc", |
28 "trace_event_argument.h", | 28 "trace_event_argument.h", |
29 "trace_event_etw_export_win.cc", | |
30 "trace_event_etw_export_win.h", | |
31 "trace_event_impl.cc", | 29 "trace_event_impl.cc", |
32 "trace_event_impl.h", | 30 "trace_event_impl.h", |
33 "trace_event_impl_constants.cc", | 31 "trace_event_impl_constants.cc", |
34 "trace_event_memory.cc", | 32 "trace_event_memory.cc", |
35 "trace_event_memory.h", | 33 "trace_event_memory.h", |
36 "trace_event_synthetic_delay.cc", | 34 "trace_event_synthetic_delay.cc", |
37 "trace_event_synthetic_delay.h", | 35 "trace_event_synthetic_delay.h", |
38 "trace_event_system_stats_monitor.cc", | 36 "trace_event_system_stats_monitor.cc", |
39 "trace_event_system_stats_monitor.h", | 37 "trace_event_system_stats_monitor.h", |
40 "trace_event_win.cc", | 38 "trace_event_win.cc", |
(...skipping 10 matching lines...) Expand all Loading... |
51 configs += [ "//base:base_implementation" ] | 49 configs += [ "//base:base_implementation" ] |
52 | 50 |
53 deps = [ | 51 deps = [ |
54 "//base/debug", | 52 "//base/debug", |
55 "//base/json", | 53 "//base/json", |
56 "//base/memory", | 54 "//base/memory", |
57 "//base/process", | 55 "//base/process", |
58 "//base/third_party/dynamic_annotations", | 56 "//base/third_party/dynamic_annotations", |
59 ] | 57 ] |
60 | 58 |
61 if (is_win) { | |
62 deps += [ "//base/trace_event/etw_manifest:chrome_events_win" ] | |
63 } | |
64 | |
65 allow_circular_includes_from = [ | 59 allow_circular_includes_from = [ |
66 "//base/debug", | 60 "//base/debug", |
67 "//base/memory", | 61 "//base/memory", |
68 "//base/process", | 62 "//base/process", |
69 ] | 63 ] |
70 | 64 |
71 visibility = [ "//base/*" ] | 65 visibility = [ "//base/*" ] |
72 } | 66 } |
73 | 67 |
74 source_set("trace_event_unittests") { | 68 source_set("trace_event_unittests") { |
(...skipping 10 matching lines...) Expand all Loading... |
85 "trace_event_unittest.cc", | 79 "trace_event_unittest.cc", |
86 "trace_event_win_unittest.cc", | 80 "trace_event_win_unittest.cc", |
87 ] | 81 ] |
88 | 82 |
89 deps = [ | 83 deps = [ |
90 "//base/test:test_support", | 84 "//base/test:test_support", |
91 "//testing/gmock", | 85 "//testing/gmock", |
92 "//testing/gtest", | 86 "//testing/gtest", |
93 ] | 87 ] |
94 } | 88 } |
OLD | NEW |