| 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 "exported/trace_event_common.h", | 7 "exported/trace_event_common.h", |
| 8 "java_heap_dump_provider_android.cc", | 8 "java_heap_dump_provider_android.cc", |
| 9 "java_heap_dump_provider_android.h", | 9 "java_heap_dump_provider_android.h", |
| 10 "memory_allocator_dump.cc", | 10 "memory_allocator_dump.cc", |
| 11 "memory_allocator_dump.h", | 11 "memory_allocator_dump.h", |
| 12 "memory_allocator_dump_guid.cc", | 12 "memory_allocator_dump_guid.cc", |
| 13 "memory_allocator_dump_guid.h", | 13 "memory_allocator_dump_guid.h", |
| 14 "memory_dump_manager.cc", | 14 "memory_dump_manager.cc", |
| 15 "memory_dump_manager.h", | 15 "memory_dump_manager.h", |
| 16 "memory_dump_provider.h", | 16 "memory_dump_provider.h", |
| 17 "memory_dump_request_args.cc", | 17 "memory_dump_request_args.cc", |
| 18 "memory_dump_request_args.h", | 18 "memory_dump_request_args.h", |
| 19 "memory_dump_session_state.cc", | 19 "memory_dump_session_state.cc", |
| 20 "memory_dump_session_state.h", | 20 "memory_dump_session_state.h", |
| 21 "memory_profiler_allocation_context.cc", | 21 "memory_profiler_allocation_context.cc", |
| 22 "memory_profiler_allocation_context.h", | 22 "memory_profiler_allocation_context.h", |
| 23 "memory_profiler_allocation_register.cc", | 23 "memory_profiler_allocation_register.cc", |
| 24 "memory_profiler_allocation_register.h", | 24 "memory_profiler_allocation_register.h", |
| 25 "memory_profiler_allocation_register_posix.cc", | 25 "memory_profiler_allocation_register_posix.cc", |
| 26 "memory_profiler_allocation_register_win.cc", | 26 "memory_profiler_allocation_register_win.cc", |
| 27 "memory_profiler_heap_dump_writer.cc", |
| 28 "memory_profiler_heap_dump_writer.h", |
| 27 "process_memory_dump.cc", | 29 "process_memory_dump.cc", |
| 28 "process_memory_dump.h", | 30 "process_memory_dump.h", |
| 29 "process_memory_maps.cc", | 31 "process_memory_maps.cc", |
| 30 "process_memory_maps.h", | 32 "process_memory_maps.h", |
| 31 "process_memory_maps_dump_provider.h", | 33 "process_memory_maps_dump_provider.h", |
| 32 "process_memory_totals.cc", | 34 "process_memory_totals.cc", |
| 33 "process_memory_totals.h", | 35 "process_memory_totals.h", |
| 34 "process_memory_totals_dump_provider.cc", | 36 "process_memory_totals_dump_provider.cc", |
| 35 "process_memory_totals_dump_provider.h", | 37 "process_memory_totals_dump_provider.h", |
| 36 "trace_buffer.cc", | 38 "trace_buffer.cc", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 if (is_linux || is_android) { | 125 if (is_linux || is_android) { |
| 124 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] | 126 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] |
| 125 } | 127 } |
| 126 | 128 |
| 127 deps = [ | 129 deps = [ |
| 128 "//base/test:test_support", | 130 "//base/test:test_support", |
| 129 "//testing/gmock", | 131 "//testing/gmock", |
| 130 "//testing/gtest", | 132 "//testing/gtest", |
| 131 ] | 133 ] |
| 132 } | 134 } |
| OLD | NEW |