OLD | NEW |
1 # Copyright (c) 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", |
| 8 "memory_allocator_dump.cc", |
| 9 "memory_allocator_dump.h", |
7 "memory_dump_manager.cc", | 10 "memory_dump_manager.cc", |
8 "memory_dump_manager.h", | 11 "memory_dump_manager.h", |
| 12 "memory_dump_provider.cc", |
9 "memory_dump_provider.h", | 13 "memory_dump_provider.h", |
10 "process_memory_dump.cc", | 14 "process_memory_dump.cc", |
11 "process_memory_dump.h", | 15 "process_memory_dump.h", |
12 "process_memory_maps.cc", | 16 "process_memory_maps.cc", |
13 "process_memory_maps.h", | 17 "process_memory_maps.h", |
14 "process_memory_maps_dump_provider.cc", | 18 "process_memory_maps_dump_provider.cc", |
15 "process_memory_maps_dump_provider.h", | 19 "process_memory_maps_dump_provider.h", |
16 "process_memory_totals.cc", | 20 "process_memory_totals.cc", |
17 "process_memory_totals.h", | 21 "process_memory_totals.h", |
18 "process_memory_totals_dump_provider.cc", | 22 "process_memory_totals_dump_provider.cc", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 ] | 56 ] |
53 | 57 |
54 allow_circular_includes_from = [ | 58 allow_circular_includes_from = [ |
55 "//base/debug", | 59 "//base/debug", |
56 "//base/memory", | 60 "//base/memory", |
57 "//base/process", | 61 "//base/process", |
58 ] | 62 ] |
59 | 63 |
60 visibility = [ "//base/*" ] | 64 visibility = [ "//base/*" ] |
61 } | 65 } |
| 66 |
| 67 source_set("trace_event_unittests") { |
| 68 testonly = true |
| 69 sources = [ |
| 70 "memory_allocator_dump_unittest.cc", |
| 71 "memory_dump_manager_unittest.cc", |
| 72 "process_memory_maps_dump_provider_unittest.cc", |
| 73 "process_memory_totals_dump_provider_unittest.cc", |
| 74 "trace_event_argument_unittest.cc", |
| 75 "trace_event_memory_unittest.cc", |
| 76 "trace_event_synthetic_delay_unittest.cc", |
| 77 "trace_event_system_stats_monitor_unittest.cc", |
| 78 "trace_event_unittest.cc", |
| 79 "trace_event_win_unittest.cc", |
| 80 ] |
| 81 |
| 82 deps = [ |
| 83 "//base/test:test_support", |
| 84 "//testing/gmock", |
| 85 "//testing/gtest", |
| 86 ] |
| 87 } |
OLD | NEW |