| 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 'variables': { | 5 'variables': { |
| 6 'trace_event_sources' : [ | 6 'trace_event_sources' : [ |
| 7 'trace_event/blame_context.cc', |
| 8 'trace_event/blame_context.h', |
| 7 'trace_event/common/trace_event_common.h', | 9 'trace_event/common/trace_event_common.h', |
| 8 'trace_event/heap_profiler_allocation_context.cc', | 10 'trace_event/heap_profiler_allocation_context.cc', |
| 9 'trace_event/heap_profiler_allocation_context.h', | 11 'trace_event/heap_profiler_allocation_context.h', |
| 10 'trace_event/heap_profiler_allocation_context_tracker.cc', | 12 'trace_event/heap_profiler_allocation_context_tracker.cc', |
| 11 'trace_event/heap_profiler_allocation_context_tracker.h', | 13 'trace_event/heap_profiler_allocation_context_tracker.h', |
| 12 'trace_event/heap_profiler_allocation_register.cc', | 14 'trace_event/heap_profiler_allocation_register.cc', |
| 13 'trace_event/heap_profiler_allocation_register_posix.cc', | 15 'trace_event/heap_profiler_allocation_register_posix.cc', |
| 14 'trace_event/heap_profiler_allocation_register_win.cc', | 16 'trace_event/heap_profiler_allocation_register_win.cc', |
| 15 'trace_event/heap_profiler_allocation_register.h', | 17 'trace_event/heap_profiler_allocation_register.h', |
| 16 'trace_event/heap_profiler_heap_dump_writer.cc', | 18 'trace_event/heap_profiler_heap_dump_writer.cc', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 'trace_event/trace_log.h', | 62 'trace_event/trace_log.h', |
| 61 'trace_event/trace_log_constants.cc', | 63 'trace_event/trace_log_constants.cc', |
| 62 'trace_event/trace_sampling_thread.cc', | 64 'trace_event/trace_sampling_thread.cc', |
| 63 'trace_event/trace_sampling_thread.h', | 65 'trace_event/trace_sampling_thread.h', |
| 64 'trace_event/tracing_agent.cc', | 66 'trace_event/tracing_agent.cc', |
| 65 'trace_event/tracing_agent.h', | 67 'trace_event/tracing_agent.h', |
| 66 'trace_event/winheap_dump_provider_win.cc', | 68 'trace_event/winheap_dump_provider_win.cc', |
| 67 'trace_event/winheap_dump_provider_win.h', | 69 'trace_event/winheap_dump_provider_win.h', |
| 68 ], | 70 ], |
| 69 'trace_event_test_sources' : [ | 71 'trace_event_test_sources' : [ |
| 72 'trace_event/blame_context_unittest.cc', |
| 70 'trace_event/heap_profiler_allocation_context_tracker_unittest.cc', | 73 'trace_event/heap_profiler_allocation_context_tracker_unittest.cc', |
| 71 'trace_event/heap_profiler_allocation_register_unittest.cc', | 74 'trace_event/heap_profiler_allocation_register_unittest.cc', |
| 72 'trace_event/heap_profiler_heap_dump_writer_unittest.cc', | 75 'trace_event/heap_profiler_heap_dump_writer_unittest.cc', |
| 73 'trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc', | 76 'trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc', |
| 74 'trace_event/heap_profiler_type_name_deduplicator_unittest.cc', | 77 'trace_event/heap_profiler_type_name_deduplicator_unittest.cc', |
| 75 'trace_event/java_heap_dump_provider_android_unittest.cc', | 78 'trace_event/java_heap_dump_provider_android_unittest.cc', |
| 76 'trace_event/memory_allocator_dump_unittest.cc', | 79 'trace_event/memory_allocator_dump_unittest.cc', |
| 77 'trace_event/memory_dump_manager_unittest.cc', | 80 'trace_event/memory_dump_manager_unittest.cc', |
| 78 'trace_event/process_memory_dump_unittest.cc', | 81 'trace_event/process_memory_dump_unittest.cc', |
| 79 'trace_event/trace_config_memory_test_util.h', | 82 'trace_event/trace_config_memory_test_util.h', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 92 ], | 95 ], |
| 93 }], | 96 }], |
| 94 ['OS == "android"', { | 97 ['OS == "android"', { |
| 95 'trace_event_test_sources' : [ | 98 'trace_event_test_sources' : [ |
| 96 'trace_event/trace_event_android_unittest.cc', | 99 'trace_event/trace_event_android_unittest.cc', |
| 97 ], | 100 ], |
| 98 }], | 101 }], |
| 99 ], | 102 ], |
| 100 }, | 103 }, |
| 101 } | 104 } |
| OLD | NEW |