| 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 "memory_allocator_attributes.h", | 7 "memory_allocator_attributes.h", |
| 8 "memory_allocator_dump.cc", | 8 "memory_allocator_dump.cc", |
| 9 "memory_allocator_dump.h", | 9 "memory_allocator_dump.h", |
| 10 "memory_dump_manager.cc", | 10 "memory_dump_manager.cc", |
| 11 "memory_dump_manager.h", | 11 "memory_dump_manager.h", |
| 12 "memory_dump_provider.cc", | 12 "memory_dump_provider.cc", |
| 13 "memory_dump_provider.h", | 13 "memory_dump_provider.h", |
| 14 "memory_dump_request_args.h", | 14 "memory_dump_request_args.h", |
| 15 "process_memory_dump.cc", | 15 "process_memory_dump.cc", |
| 16 "process_memory_dump.h", | 16 "process_memory_dump.h", |
| 17 "process_memory_maps.cc", | 17 "process_memory_maps.cc", |
| 18 "process_memory_maps.h", | 18 "process_memory_maps.h", |
| 19 "process_memory_maps_dump_provider.cc", | 19 "process_memory_maps_dump_provider.cc", |
| 20 "process_memory_maps_dump_provider.h", | 20 "process_memory_maps_dump_provider.h", |
| 21 "process_memory_totals.cc", | 21 "process_memory_totals.cc", |
| 22 "process_memory_totals.h", | 22 "process_memory_totals.h", |
| 23 "process_memory_totals_dump_provider.cc", | 23 "process_memory_totals_dump_provider.cc", |
| 24 "process_memory_totals_dump_provider.h", | 24 "process_memory_totals_dump_provider.h", |
| 25 "scoped_file_trace.cc", |
| 26 "scoped_file_trace.h", |
| 25 "trace_event.h", | 27 "trace_event.h", |
| 26 "trace_event_android.cc", | 28 "trace_event_android.cc", |
| 27 "trace_event_argument.cc", | 29 "trace_event_argument.cc", |
| 28 "trace_event_argument.h", | 30 "trace_event_argument.h", |
| 29 "trace_event_etw_export_win.cc", | 31 "trace_event_etw_export_win.cc", |
| 30 "trace_event_etw_export_win.h", | 32 "trace_event_etw_export_win.h", |
| 31 "trace_event_impl.cc", | 33 "trace_event_impl.cc", |
| 32 "trace_event_impl.h", | 34 "trace_event_impl.h", |
| 33 "trace_event_impl_constants.cc", | 35 "trace_event_impl_constants.cc", |
| 34 "trace_event_memory.cc", | 36 "trace_event_memory.cc", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "trace_event_unittest.cc", | 94 "trace_event_unittest.cc", |
| 93 "trace_event_win_unittest.cc", | 95 "trace_event_win_unittest.cc", |
| 94 ] | 96 ] |
| 95 | 97 |
| 96 deps = [ | 98 deps = [ |
| 97 "//base/test:test_support", | 99 "//base/test:test_support", |
| 98 "//testing/gmock", | 100 "//testing/gmock", |
| 99 "//testing/gtest", | 101 "//testing/gtest", |
| 100 ] | 102 ] |
| 101 } | 103 } |
| OLD | NEW |