| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 "trace_event_synthetic_delay_unittest.cc", | 128 "trace_event_synthetic_delay_unittest.cc", |
| 129 "trace_event_system_stats_monitor_unittest.cc", | 129 "trace_event_system_stats_monitor_unittest.cc", |
| 130 "trace_event_unittest.cc", | 130 "trace_event_unittest.cc", |
| 131 "winheap_dump_provider_win_unittest.cc", | 131 "winheap_dump_provider_win_unittest.cc", |
| 132 ] | 132 ] |
| 133 | 133 |
| 134 if (is_linux || is_android) { | 134 if (is_linux || is_android) { |
| 135 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] | 135 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] |
| 136 } | 136 } |
| 137 | 137 |
| 138 if (is_android) { |
| 139 sources += [ "trace_event_android_unittest.cc" ] |
| 140 } |
| 141 |
| 138 deps = [ | 142 deps = [ |
| 139 "//base/test:test_support", | 143 "//base/test:test_support", |
| 140 "//testing/gmock", | 144 "//testing/gmock", |
| 141 "//testing/gtest", | 145 "//testing/gtest", |
| 142 ] | 146 ] |
| 143 } | 147 } |
| OLD | NEW |