Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: base/trace_event/trace_event.gypi

Issue 1397483002: Restrict memory maps dump provider to only android and linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@smaps_fscan
Patch Set: Fixing. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/java_heap_dump_provider_android.cc', 7 'trace_event/java_heap_dump_provider_android.cc',
8 'trace_event/java_heap_dump_provider_android.h', 8 'trace_event/java_heap_dump_provider_android.h',
9 'trace_event/memory_allocator_dump.cc', 9 'trace_event/memory_allocator_dump.cc',
10 'trace_event/memory_allocator_dump.h', 10 'trace_event/memory_allocator_dump.h',
11 'trace_event/memory_allocator_dump_guid.cc', 11 'trace_event/memory_allocator_dump_guid.cc',
12 'trace_event/memory_allocator_dump_guid.h', 12 'trace_event/memory_allocator_dump_guid.h',
13 'trace_event/memory_dump_manager.cc', 13 'trace_event/memory_dump_manager.cc',
14 'trace_event/memory_dump_manager.h', 14 'trace_event/memory_dump_manager.h',
15 'trace_event/memory_dump_provider.h', 15 'trace_event/memory_dump_provider.h',
16 'trace_event/memory_dump_request_args.cc', 16 'trace_event/memory_dump_request_args.cc',
17 'trace_event/memory_dump_request_args.h', 17 'trace_event/memory_dump_request_args.h',
18 'trace_event/memory_dump_session_state.cc', 18 'trace_event/memory_dump_session_state.cc',
19 'trace_event/memory_dump_session_state.h', 19 'trace_event/memory_dump_session_state.h',
20 'trace_event/memory_profiler_allocation_context.cc', 20 'trace_event/memory_profiler_allocation_context.cc',
21 'trace_event/memory_profiler_allocation_context.h', 21 'trace_event/memory_profiler_allocation_context.h',
22 'trace_event/process_memory_dump.cc', 22 'trace_event/process_memory_dump.cc',
23 'trace_event/process_memory_dump.h', 23 'trace_event/process_memory_dump.h',
24 'trace_event/process_memory_maps.cc', 24 'trace_event/process_memory_maps.cc',
25 'trace_event/process_memory_maps.h', 25 'trace_event/process_memory_maps.h',
26 'trace_event/process_memory_maps_dump_provider.cc',
27 'trace_event/process_memory_maps_dump_provider.h', 26 'trace_event/process_memory_maps_dump_provider.h',
28 'trace_event/process_memory_totals.cc', 27 'trace_event/process_memory_totals.cc',
29 'trace_event/process_memory_totals.h', 28 'trace_event/process_memory_totals.h',
30 'trace_event/process_memory_totals_dump_provider.cc', 29 'trace_event/process_memory_totals_dump_provider.cc',
31 'trace_event/process_memory_totals_dump_provider.h', 30 'trace_event/process_memory_totals_dump_provider.h',
32 'trace_event/trace_buffer.cc', 31 'trace_event/trace_buffer.cc',
33 'trace_event/trace_buffer.h', 32 'trace_event/trace_buffer.h',
34 'trace_event/trace_config.cc', 33 'trace_event/trace_config.cc',
35 'trace_event/trace_config.h', 34 'trace_event/trace_config.h',
36 'trace_event/trace_event.h', 35 'trace_event/trace_event.h',
(...skipping 16 matching lines...) Expand all
53 'trace_event/trace_event_win.cc', 52 'trace_event/trace_event_win.cc',
54 'trace_event/trace_event_win.h', 53 'trace_event/trace_event_win.h',
55 'trace_event/trace_log.cc', 54 'trace_event/trace_log.cc',
56 'trace_event/trace_log.h', 55 'trace_event/trace_log.h',
57 'trace_event/trace_log_constants.cc', 56 'trace_event/trace_log_constants.cc',
58 'trace_event/trace_sampling_thread.cc', 57 'trace_event/trace_sampling_thread.cc',
59 'trace_event/trace_sampling_thread.h', 58 'trace_event/trace_sampling_thread.h',
60 'trace_event/winheap_dump_provider_win.cc', 59 'trace_event/winheap_dump_provider_win.cc',
61 'trace_event/winheap_dump_provider_win.h', 60 'trace_event/winheap_dump_provider_win.h',
62 ], 61 ],
63 'conditions': [
64 ['OS == "linux" or OS == "android"', {
65 'trace_event_sources': [
66 'trace_event/malloc_dump_provider.cc',
67 'trace_event/malloc_dump_provider.h',
68 ],
69 }],
70 ],
71 'trace_event_test_sources' : [ 62 'trace_event_test_sources' : [
72 'trace_event/java_heap_dump_provider_android_unittest.cc', 63 'trace_event/java_heap_dump_provider_android_unittest.cc',
73 'trace_event/memory_allocator_dump_unittest.cc', 64 'trace_event/memory_allocator_dump_unittest.cc',
74 'trace_event/memory_dump_manager_unittest.cc', 65 'trace_event/memory_dump_manager_unittest.cc',
75 'trace_event/memory_profiler_allocation_context_unittest.cc', 66 'trace_event/memory_profiler_allocation_context_unittest.cc',
76 'trace_event/process_memory_dump_unittest.cc', 67 'trace_event/process_memory_dump_unittest.cc',
77 'trace_event/process_memory_maps_dump_provider_unittest.cc',
78 'trace_event/process_memory_totals_dump_provider_unittest.cc', 68 'trace_event/process_memory_totals_dump_provider_unittest.cc',
79 'trace_event/trace_config_memory_test_util.h', 69 'trace_event/trace_config_memory_test_util.h',
80 'trace_event/trace_config_unittest.cc', 70 'trace_event/trace_config_unittest.cc',
81 'trace_event/trace_event_argument_unittest.cc', 71 'trace_event/trace_event_argument_unittest.cc',
82 'trace_event/trace_event_memory_unittest.cc', 72 'trace_event/trace_event_memory_unittest.cc',
83 'trace_event/trace_event_synthetic_delay_unittest.cc', 73 'trace_event/trace_event_synthetic_delay_unittest.cc',
84 'trace_event/trace_event_system_stats_monitor_unittest.cc', 74 'trace_event/trace_event_system_stats_monitor_unittest.cc',
85 'trace_event/trace_event_unittest.cc', 75 'trace_event/trace_event_unittest.cc',
86 'trace_event/trace_event_win_unittest.cc', 76 'trace_event/trace_event_win_unittest.cc',
87 'trace_event/winheap_dump_provider_win_unittest.cc', 77 'trace_event/winheap_dump_provider_win_unittest.cc',
88 ], 78 ],
79 'conditions': [
80 ['OS == "linux" or OS == "android"', {
81 'trace_event_sources': [
82 'trace_event/malloc_dump_provider.cc',
83 'trace_event/malloc_dump_provider.h',
84 'trace_event/process_memory_maps_dump_provider.cc',
85 ],
86 'trace_event_test_sources' : [
87 'trace_event/process_memory_maps_dump_provider_unittest.cc',
88 ],
89 }],
90 ],
89 }, 91 },
90 } 92 }
OLDNEW
« no previous file with comments | « base/trace_event/process_memory_maps_dump_provider_unittest.cc ('k') | tools/gn/bootstrap/bootstrap.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698