| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "trace_event_impl.cc", | 46 "trace_event_impl.cc", |
| 47 "trace_event_impl.h", | 47 "trace_event_impl.h", |
| 48 "trace_event_memory.cc", | 48 "trace_event_memory.cc", |
| 49 "trace_event_memory.h", | 49 "trace_event_memory.h", |
| 50 "trace_event_memory_overhead.cc", | 50 "trace_event_memory_overhead.cc", |
| 51 "trace_event_memory_overhead.h", | 51 "trace_event_memory_overhead.h", |
| 52 "trace_event_synthetic_delay.cc", | 52 "trace_event_synthetic_delay.cc", |
| 53 "trace_event_synthetic_delay.h", | 53 "trace_event_synthetic_delay.h", |
| 54 "trace_event_system_stats_monitor.cc", | 54 "trace_event_system_stats_monitor.cc", |
| 55 "trace_event_system_stats_monitor.h", | 55 "trace_event_system_stats_monitor.h", |
| 56 "trace_event_win.cc", | |
| 57 "trace_event_win.h", | |
| 58 "trace_log.cc", | 56 "trace_log.cc", |
| 59 "trace_log.h", | 57 "trace_log.h", |
| 60 "trace_log_constants.cc", | 58 "trace_log_constants.cc", |
| 61 "trace_sampling_thread.cc", | 59 "trace_sampling_thread.cc", |
| 62 "trace_sampling_thread.h", | 60 "trace_sampling_thread.h", |
| 63 "winheap_dump_provider_win.cc", | 61 "winheap_dump_provider_win.cc", |
| 64 "winheap_dump_provider_win.h", | 62 "winheap_dump_provider_win.h", |
| 65 ] | 63 ] |
| 66 | 64 |
| 67 if (is_nacl) { | 65 if (is_nacl) { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "memory_profiler_allocation_register_unittest.cc", | 110 "memory_profiler_allocation_register_unittest.cc", |
| 113 "process_memory_dump_unittest.cc", | 111 "process_memory_dump_unittest.cc", |
| 114 "process_memory_totals_dump_provider_unittest.cc", | 112 "process_memory_totals_dump_provider_unittest.cc", |
| 115 "trace_config_memory_test_util.h", | 113 "trace_config_memory_test_util.h", |
| 116 "trace_config_unittest.cc", | 114 "trace_config_unittest.cc", |
| 117 "trace_event_argument_unittest.cc", | 115 "trace_event_argument_unittest.cc", |
| 118 "trace_event_memory_unittest.cc", | 116 "trace_event_memory_unittest.cc", |
| 119 "trace_event_synthetic_delay_unittest.cc", | 117 "trace_event_synthetic_delay_unittest.cc", |
| 120 "trace_event_system_stats_monitor_unittest.cc", | 118 "trace_event_system_stats_monitor_unittest.cc", |
| 121 "trace_event_unittest.cc", | 119 "trace_event_unittest.cc", |
| 122 "trace_event_win_unittest.cc", | |
| 123 "winheap_dump_provider_win_unittest.cc", | 120 "winheap_dump_provider_win_unittest.cc", |
| 124 ] | 121 ] |
| 125 | 122 |
| 126 if (is_linux || is_android) { | 123 if (is_linux || is_android) { |
| 127 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] | 124 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] |
| 128 } | 125 } |
| 129 | 126 |
| 130 deps = [ | 127 deps = [ |
| 131 "//base/test:test_support", | 128 "//base/test:test_support", |
| 132 "//testing/gmock", | 129 "//testing/gmock", |
| 133 "//testing/gtest", | 130 "//testing/gtest", |
| 134 ] | 131 ] |
| 135 } | 132 } |
| OLD | NEW |