| 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_attributes_type_info.cc", | |
| 10 "memory_allocator_attributes_type_info.h", | |
| 11 "memory_allocator_dump.cc", | 9 "memory_allocator_dump.cc", |
| 12 "memory_allocator_dump.h", | 10 "memory_allocator_dump.h", |
| 13 "memory_dump_manager.cc", | 11 "memory_dump_manager.cc", |
| 14 "memory_dump_manager.h", | 12 "memory_dump_manager.h", |
| 15 "memory_dump_provider.cc", | |
| 16 "memory_dump_provider.h", | 13 "memory_dump_provider.h", |
| 17 "memory_dump_request_args.h", | 14 "memory_dump_request_args.h", |
| 18 "memory_dump_session_state.cc", | 15 "memory_dump_session_state.cc", |
| 19 "memory_dump_session_state.h", | 16 "memory_dump_session_state.h", |
| 20 "process_memory_dump.cc", | 17 "process_memory_dump.cc", |
| 21 "process_memory_dump.h", | 18 "process_memory_dump.h", |
| 22 "process_memory_maps.cc", | 19 "process_memory_maps.cc", |
| 23 "process_memory_maps.h", | 20 "process_memory_maps.h", |
| 24 "process_memory_maps_dump_provider.cc", | 21 "process_memory_maps_dump_provider.cc", |
| 25 "process_memory_maps_dump_provider.h", | 22 "process_memory_maps_dump_provider.h", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "//base/memory", | 78 "//base/memory", |
| 82 "//base/process", | 79 "//base/process", |
| 83 ] | 80 ] |
| 84 | 81 |
| 85 visibility = [ "//base/*" ] | 82 visibility = [ "//base/*" ] |
| 86 } | 83 } |
| 87 | 84 |
| 88 source_set("trace_event_unittests") { | 85 source_set("trace_event_unittests") { |
| 89 testonly = true | 86 testonly = true |
| 90 sources = [ | 87 sources = [ |
| 91 "memory_allocator_attributes_type_info_unittest.cc", | 88 "java_heap_dump_provider_android_unittest.cc", |
| 92 "memory_allocator_dump_unittest.cc", | 89 "memory_allocator_dump_unittest.cc", |
| 93 "memory_dump_manager_unittest.cc", | 90 "memory_dump_manager_unittest.cc", |
| 94 "process_memory_maps_dump_provider_unittest.cc", | 91 "process_memory_maps_dump_provider_unittest.cc", |
| 95 "process_memory_totals_dump_provider_unittest.cc", | 92 "process_memory_totals_dump_provider_unittest.cc", |
| 96 "trace_event_argument_unittest.cc", | 93 "trace_event_argument_unittest.cc", |
| 97 "trace_event_memory_unittest.cc", | 94 "trace_event_memory_unittest.cc", |
| 98 "trace_event_synthetic_delay_unittest.cc", | 95 "trace_event_synthetic_delay_unittest.cc", |
| 99 "trace_event_system_stats_monitor_unittest.cc", | 96 "trace_event_system_stats_monitor_unittest.cc", |
| 100 "trace_event_unittest.cc", | 97 "trace_event_unittest.cc", |
| 101 "trace_event_win_unittest.cc", | 98 "trace_event_win_unittest.cc", |
| 102 "winheap_dump_provider_win_unittest.cc", | 99 "winheap_dump_provider_win_unittest.cc", |
| 103 ] | 100 ] |
| 104 | 101 |
| 105 deps = [ | 102 deps = [ |
| 106 "//base/test:test_support", | 103 "//base/test:test_support", |
| 107 "//testing/gmock", | 104 "//testing/gmock", |
| 108 "//testing/gtest", | 105 "//testing/gtest", |
| 109 ] | 106 ] |
| 110 } | 107 } |
| OLD | NEW |