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

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

Issue 1100173002: Add a WinHeap dump provider to the memory profiler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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/memory_allocator_attributes_type_info.cc', 7 'trace_event/memory_allocator_attributes_type_info.cc',
8 'trace_event/memory_allocator_attributes_type_info.h', 8 'trace_event/memory_allocator_attributes_type_info.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',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'trace_event/trace_event_win.cc', 43 'trace_event/trace_event_win.cc',
44 'trace_event/trace_event_win.h', 44 'trace_event/trace_event_win.h',
45 ], 45 ],
46 'conditions': [ 46 'conditions': [
47 ['OS == "linux" or OS == "android"', { 47 ['OS == "linux" or OS == "android"', {
48 'trace_event_sources': [ 48 'trace_event_sources': [
49 'trace_event/malloc_dump_provider.cc', 49 'trace_event/malloc_dump_provider.cc',
50 'trace_event/malloc_dump_provider.h', 50 'trace_event/malloc_dump_provider.h',
51 ], 51 ],
52 }], 52 }],
53 ['OS == "win"', {
54 'trace_event_sources': [
55 'trace_event/winheap_dump_provider_win.cc',
Primiano Tucci (use gerrit) 2015/04/22 23:48:32 I think that you can just drop the final _win suff
Sébastien Marchand 2015/04/23 10:52:02 It looks like I can just use the _win suffix and g
56 'trace_event/winheap_dump_provider.h',
57 ],
58 }],
53 ], 59 ],
54 'trace_event_test_sources' : [ 60 'trace_event_test_sources' : [
55 'trace_event/memory_allocator_attributes_type_info_unittest.cc', 61 'trace_event/memory_allocator_attributes_type_info_unittest.cc',
56 'trace_event/memory_allocator_dump_unittest.cc', 62 'trace_event/memory_allocator_dump_unittest.cc',
57 'trace_event/memory_dump_manager_unittest.cc', 63 'trace_event/memory_dump_manager_unittest.cc',
58 'trace_event/process_memory_maps_dump_provider_unittest.cc', 64 'trace_event/process_memory_maps_dump_provider_unittest.cc',
59 'trace_event/process_memory_totals_dump_provider_unittest.cc', 65 'trace_event/process_memory_totals_dump_provider_unittest.cc',
60 'trace_event/trace_event_argument_unittest.cc', 66 'trace_event/trace_event_argument_unittest.cc',
61 'trace_event/trace_event_memory_unittest.cc', 67 'trace_event/trace_event_memory_unittest.cc',
62 'trace_event/trace_event_synthetic_delay_unittest.cc', 68 'trace_event/trace_event_synthetic_delay_unittest.cc',
63 'trace_event/trace_event_system_stats_monitor_unittest.cc', 69 'trace_event/trace_event_system_stats_monitor_unittest.cc',
64 'trace_event/trace_event_unittest.cc', 70 'trace_event/trace_event_unittest.cc',
65 'trace_event/trace_event_win_unittest.cc', 71 'trace_event/trace_event_win_unittest.cc',
72 'trace_event/winheap_dump_provider_unittest.cc',
Primiano Tucci (use gerrit) 2015/04/22 23:48:32 You probably want the same conditional logic here
Sébastien Marchand 2015/04/23 10:52:02 Ditto.
66 ], 73 ],
67 }, 74 },
68 } 75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698