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", |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 | 98 |
99 source_set("trace_event_unittests") { | 99 source_set("trace_event_unittests") { |
100 testonly = true | 100 testonly = true |
101 sources = [ | 101 sources = [ |
102 "java_heap_dump_provider_android_unittest.cc", | 102 "java_heap_dump_provider_android_unittest.cc", |
103 "memory_allocator_dump_unittest.cc", | 103 "memory_allocator_dump_unittest.cc", |
104 "memory_dump_manager_unittest.cc", | 104 "memory_dump_manager_unittest.cc", |
105 "process_memory_dump_unittest.cc", | 105 "process_memory_dump_unittest.cc", |
106 "process_memory_maps_dump_provider_unittest.cc", | 106 "process_memory_maps_dump_provider_unittest.cc", |
107 "process_memory_totals_dump_provider_unittest.cc", | 107 "process_memory_totals_dump_provider_unittest.cc", |
| 108 "trace_config_memory_test_util.h", |
108 "trace_config_unittest.cc", | 109 "trace_config_unittest.cc", |
109 "trace_event_argument_unittest.cc", | 110 "trace_event_argument_unittest.cc", |
110 "trace_event_memory_unittest.cc", | 111 "trace_event_memory_unittest.cc", |
111 "trace_event_synthetic_delay_unittest.cc", | 112 "trace_event_synthetic_delay_unittest.cc", |
112 "trace_event_system_stats_monitor_unittest.cc", | 113 "trace_event_system_stats_monitor_unittest.cc", |
113 "trace_event_unittest.cc", | 114 "trace_event_unittest.cc", |
114 "trace_event_win_unittest.cc", | 115 "trace_event_win_unittest.cc", |
115 "winheap_dump_provider_win_unittest.cc", | 116 "winheap_dump_provider_win_unittest.cc", |
116 ] | 117 ] |
117 | 118 |
118 deps = [ | 119 deps = [ |
119 "//base/test:test_support", | 120 "//base/test:test_support", |
120 "//testing/gmock", | 121 "//testing/gmock", |
121 "//testing/gtest", | 122 "//testing/gtest", |
122 ] | 123 ] |
123 } | 124 } |
OLD | NEW |