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 "generic_shared_memory_id.cc", |
| 8 "generic_shared_memory_id.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_allocator_dump_guid.cc", | 13 "memory_allocator_dump_guid.cc", |
12 "memory_allocator_dump_guid.h", | 14 "memory_allocator_dump_guid.h", |
13 "memory_dump_manager.cc", | 15 "memory_dump_manager.cc", |
14 "memory_dump_manager.h", | 16 "memory_dump_manager.h", |
15 "memory_dump_provider.h", | 17 "memory_dump_provider.h", |
16 "memory_dump_request_args.cc", | 18 "memory_dump_request_args.cc", |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 "trace_event_win_unittest.cc", | 116 "trace_event_win_unittest.cc", |
115 "winheap_dump_provider_win_unittest.cc", | 117 "winheap_dump_provider_win_unittest.cc", |
116 ] | 118 ] |
117 | 119 |
118 deps = [ | 120 deps = [ |
119 "//base/test:test_support", | 121 "//base/test:test_support", |
120 "//testing/gmock", | 122 "//testing/gmock", |
121 "//testing/gtest", | 123 "//testing/gtest", |
122 ] | 124 ] |
123 } | 125 } |
OLD | NEW |