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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "winheap_dump_provider_win.h", | 49 "winheap_dump_provider_win.h", |
50 ] | 50 ] |
51 | 51 |
52 if (is_nacl) { | 52 if (is_nacl) { |
53 sources -= [ | 53 sources -= [ |
54 "process_memory_totals_dump_provider.cc", | 54 "process_memory_totals_dump_provider.cc", |
55 "trace_event_system_stats_monitor.cc", | 55 "trace_event_system_stats_monitor.cc", |
56 ] | 56 ] |
57 } | 57 } |
58 | 58 |
59 if (is_linux || is_android) { | 59 if ((is_linux || is_android) && !is_fnl) { |
60 sources += [ | 60 sources += [ |
61 "malloc_dump_provider.cc", | 61 "malloc_dump_provider.cc", |
62 "malloc_dump_provider.h", | 62 "malloc_dump_provider.h", |
63 ] | 63 ] |
64 } | 64 } |
65 | 65 |
66 configs += [ "//base:base_implementation" ] | 66 configs += [ "//base:base_implementation" ] |
67 | 67 |
68 deps = [ | 68 deps = [ |
69 "//base/debug", | 69 "//base/debug", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 "trace_event_win_unittest.cc", | 104 "trace_event_win_unittest.cc", |
105 "winheap_dump_provider_win_unittest.cc", | 105 "winheap_dump_provider_win_unittest.cc", |
106 ] | 106 ] |
107 | 107 |
108 deps = [ | 108 deps = [ |
109 "//base/test:test_support", | 109 "//base/test:test_support", |
110 "//testing/gmock", | 110 "//testing/gmock", |
111 "//testing/gtest", | 111 "//testing/gtest", |
112 ] | 112 ] |
113 } | 113 } |
OLD | NEW |