| 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 "common/trace_event_common.h", | 7 "common/trace_event_common.h", |
| 8 "heap_profiler_allocation_context.cc", | 8 "heap_profiler_allocation_context.cc", |
| 9 "heap_profiler_allocation_context.h", | 9 "heap_profiler_allocation_context.h", |
| 10 "heap_profiler_allocation_context_tracker.cc", | 10 "heap_profiler_allocation_context_tracker.cc", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "trace_config.cc", | 44 "trace_config.cc", |
| 45 "trace_config.h", | 45 "trace_config.h", |
| 46 "trace_event.h", | 46 "trace_event.h", |
| 47 "trace_event_android.cc", | 47 "trace_event_android.cc", |
| 48 "trace_event_argument.cc", | 48 "trace_event_argument.cc", |
| 49 "trace_event_argument.h", | 49 "trace_event_argument.h", |
| 50 "trace_event_etw_export_win.cc", | 50 "trace_event_etw_export_win.cc", |
| 51 "trace_event_etw_export_win.h", | 51 "trace_event_etw_export_win.h", |
| 52 "trace_event_impl.cc", | 52 "trace_event_impl.cc", |
| 53 "trace_event_impl.h", | 53 "trace_event_impl.h", |
| 54 "trace_event_memory.cc", | |
| 55 "trace_event_memory.h", | |
| 56 "trace_event_memory_overhead.cc", | 54 "trace_event_memory_overhead.cc", |
| 57 "trace_event_memory_overhead.h", | 55 "trace_event_memory_overhead.h", |
| 58 "trace_event_synthetic_delay.cc", | 56 "trace_event_synthetic_delay.cc", |
| 59 "trace_event_synthetic_delay.h", | 57 "trace_event_synthetic_delay.h", |
| 60 "trace_event_system_stats_monitor.cc", | 58 "trace_event_system_stats_monitor.cc", |
| 61 "trace_event_system_stats_monitor.h", | 59 "trace_event_system_stats_monitor.h", |
| 62 "trace_log.cc", | 60 "trace_log.cc", |
| 63 "trace_log.h", | 61 "trace_log.h", |
| 64 "trace_log_constants.cc", | 62 "trace_log_constants.cc", |
| 65 "trace_sampling_thread.cc", | 63 "trace_sampling_thread.cc", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 "heap_profiler_heap_dump_writer_unittest.cc", | 115 "heap_profiler_heap_dump_writer_unittest.cc", |
| 118 "heap_profiler_stack_frame_deduplicator_unittest.cc", | 116 "heap_profiler_stack_frame_deduplicator_unittest.cc", |
| 119 "java_heap_dump_provider_android_unittest.cc", | 117 "java_heap_dump_provider_android_unittest.cc", |
| 120 "memory_allocator_dump_unittest.cc", | 118 "memory_allocator_dump_unittest.cc", |
| 121 "memory_dump_manager_unittest.cc", | 119 "memory_dump_manager_unittest.cc", |
| 122 "process_memory_dump_unittest.cc", | 120 "process_memory_dump_unittest.cc", |
| 123 "process_memory_totals_dump_provider_unittest.cc", | 121 "process_memory_totals_dump_provider_unittest.cc", |
| 124 "trace_config_memory_test_util.h", | 122 "trace_config_memory_test_util.h", |
| 125 "trace_config_unittest.cc", | 123 "trace_config_unittest.cc", |
| 126 "trace_event_argument_unittest.cc", | 124 "trace_event_argument_unittest.cc", |
| 127 "trace_event_memory_unittest.cc", | |
| 128 "trace_event_synthetic_delay_unittest.cc", | 125 "trace_event_synthetic_delay_unittest.cc", |
| 129 "trace_event_system_stats_monitor_unittest.cc", | 126 "trace_event_system_stats_monitor_unittest.cc", |
| 130 "trace_event_unittest.cc", | 127 "trace_event_unittest.cc", |
| 131 "winheap_dump_provider_win_unittest.cc", | 128 "winheap_dump_provider_win_unittest.cc", |
| 132 ] | 129 ] |
| 133 | 130 |
| 134 if (is_linux || is_android) { | 131 if (is_linux || is_android) { |
| 135 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] | 132 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] |
| 136 } | 133 } |
| 137 | 134 |
| 138 deps = [ | 135 deps = [ |
| 139 "//base/test:test_support", | 136 "//base/test:test_support", |
| 140 "//testing/gmock", | 137 "//testing/gmock", |
| 141 "//testing/gtest", | 138 "//testing/gtest", |
| 142 ] | 139 ] |
| 143 } | 140 } |
| OLD | NEW |