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

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

Issue 1417003003: [tracing] Dump child processes' memory metrics in browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@web_cache2_base
Patch Set: dNits. Created 5 years, 1 month 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/common/trace_event_common.h', 7 'trace_event/common/trace_event_common.h',
8 'trace_event/java_heap_dump_provider_android.cc', 8 'trace_event/java_heap_dump_provider_android.cc',
9 'trace_event/java_heap_dump_provider_android.h', 9 'trace_event/java_heap_dump_provider_android.h',
10 'trace_event/memory_allocator_dump.cc', 10 'trace_event/memory_allocator_dump.cc',
(...skipping 12 matching lines...) Expand all
23 'trace_event/memory_profiler_allocation_register.cc', 23 'trace_event/memory_profiler_allocation_register.cc',
24 'trace_event/memory_profiler_allocation_register_posix.cc', 24 'trace_event/memory_profiler_allocation_register_posix.cc',
25 'trace_event/memory_profiler_allocation_register_win.cc', 25 'trace_event/memory_profiler_allocation_register_win.cc',
26 'trace_event/memory_profiler_allocation_register.h', 26 'trace_event/memory_profiler_allocation_register.h',
27 'trace_event/memory_profiler_heap_dump_writer.cc', 27 'trace_event/memory_profiler_heap_dump_writer.cc',
28 'trace_event/memory_profiler_heap_dump_writer.h', 28 'trace_event/memory_profiler_heap_dump_writer.h',
29 'trace_event/process_memory_dump.cc', 29 'trace_event/process_memory_dump.cc',
30 'trace_event/process_memory_dump.h', 30 'trace_event/process_memory_dump.h',
31 'trace_event/process_memory_maps.cc', 31 'trace_event/process_memory_maps.cc',
32 'trace_event/process_memory_maps.h', 32 'trace_event/process_memory_maps.h',
33 'trace_event/process_memory_maps_dump_provider.h',
34 'trace_event/process_memory_totals.cc', 33 'trace_event/process_memory_totals.cc',
35 'trace_event/process_memory_totals.h', 34 'trace_event/process_memory_totals.h',
36 'trace_event/process_memory_totals_dump_provider.cc',
37 'trace_event/process_memory_totals_dump_provider.h',
38 'trace_event/trace_buffer.cc', 35 'trace_event/trace_buffer.cc',
39 'trace_event/trace_buffer.h', 36 'trace_event/trace_buffer.h',
40 'trace_event/trace_config.cc', 37 'trace_event/trace_config.cc',
41 'trace_event/trace_config.h', 38 'trace_event/trace_config.h',
42 'trace_event/trace_event.h', 39 'trace_event/trace_event.h',
43 'trace_event/trace_event_android.cc', 40 'trace_event/trace_event_android.cc',
44 'trace_event/trace_event_argument.cc', 41 'trace_event/trace_event_argument.cc',
45 'trace_event/trace_event_argument.h', 42 'trace_event/trace_event_argument.h',
46 'trace_event/trace_event_etw_export_win.cc', 43 'trace_event/trace_event_etw_export_win.cc',
47 'trace_event/trace_event_etw_export_win.h', 44 'trace_event/trace_event_etw_export_win.h',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 'trace_event/winheap_dump_provider_win_unittest.cc', 78 'trace_event/winheap_dump_provider_win_unittest.cc',
82 ], 79 ],
83 'conditions': [ 80 'conditions': [
84 ['OS == "linux" or OS=="android" or OS=="mac"', { 81 ['OS == "linux" or OS=="android" or OS=="mac"', {
85 'trace_event_sources': [ 82 'trace_event_sources': [
86 'trace_event/malloc_dump_provider.cc', 83 'trace_event/malloc_dump_provider.cc',
87 'trace_event/malloc_dump_provider.h', 84 'trace_event/malloc_dump_provider.h',
88 ], 85 ],
89 }], 86 }],
90 ['OS == "linux" or OS == "android"', { 87 ['OS == "linux" or OS == "android"', {
91 'trace_event_sources': [
92 'trace_event/process_memory_maps_dump_provider.cc',
93 ],
94 'trace_event_test_sources' : [ 88 'trace_event_test_sources' : [
95 'trace_event/process_memory_maps_dump_provider_unittest.cc', 89 'trace_event/process_memory_maps_dump_provider_unittest.cc',
Primiano Tucci (use gerrit) 2015/11/17 10:44:12 what about this unittest?
ssid 2015/11/17 13:55:06 Done.
96 ], 90 ],
97 }], 91 }],
98 ], 92 ],
99 }, 93 },
100 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698