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

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

Issue 2159323002: Add tracing AutoOpenCloseEvent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update design Created 4 years, 3 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/blame_context.cc', 7 'trace_event/blame_context.cc',
8 'trace_event/blame_context.h', 8 'trace_event/blame_context.h',
9 'trace_event/common/trace_event_common.h', 9 'trace_event/common/trace_event_common.h',
10 'trace_event/heap_profiler.h', 10 'trace_event/heap_profiler.h',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'trace_event_test_sources' : [ 74 'trace_event_test_sources' : [
75 'trace_event/blame_context_unittest.cc', 75 'trace_event/blame_context_unittest.cc',
76 'trace_event/heap_profiler_allocation_context_tracker_unittest.cc', 76 'trace_event/heap_profiler_allocation_context_tracker_unittest.cc',
77 'trace_event/heap_profiler_allocation_register_unittest.cc', 77 'trace_event/heap_profiler_allocation_register_unittest.cc',
78 'trace_event/heap_profiler_heap_dump_writer_unittest.cc', 78 'trace_event/heap_profiler_heap_dump_writer_unittest.cc',
79 'trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc', 79 'trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc',
80 'trace_event/heap_profiler_type_name_deduplicator_unittest.cc', 80 'trace_event/heap_profiler_type_name_deduplicator_unittest.cc',
81 'trace_event/java_heap_dump_provider_android_unittest.cc', 81 'trace_event/java_heap_dump_provider_android_unittest.cc',
82 'trace_event/memory_allocator_dump_unittest.cc', 82 'trace_event/memory_allocator_dump_unittest.cc',
83 'trace_event/memory_dump_manager_unittest.cc', 83 'trace_event/memory_dump_manager_unittest.cc',
84 'trace_event/persistent_async_event_unittest.cc',
Primiano Tucci (use gerrit) 2016/09/15 10:08:30 FYI gyp is deprecated and there is no need to main
alexandermont 2016/09/15 21:05:13 Reverted
84 'trace_event/process_memory_dump_unittest.cc', 85 'trace_event/process_memory_dump_unittest.cc',
85 'trace_event/trace_config_memory_test_util.h', 86 'trace_event/trace_config_memory_test_util.h',
86 'trace_event/trace_config_unittest.cc', 87 'trace_event/trace_config_unittest.cc',
87 'trace_event/trace_event_argument_unittest.cc', 88 'trace_event/trace_event_argument_unittest.cc',
88 'trace_event/trace_event_synthetic_delay_unittest.cc', 89 'trace_event/trace_event_synthetic_delay_unittest.cc',
89 'trace_event/trace_event_system_stats_monitor_unittest.cc', 90 'trace_event/trace_event_system_stats_monitor_unittest.cc',
90 'trace_event/trace_event_unittest.cc', 91 'trace_event/trace_event_unittest.cc',
91 'trace_event/winheap_dump_provider_win_unittest.cc', 92 'trace_event/winheap_dump_provider_win_unittest.cc',
92 ], 93 ],
93 'conditions': [ 94 'conditions': [
94 ['OS == "linux" or OS=="android" or OS=="mac" or OS=="ios"', { 95 ['OS == "linux" or OS=="android" or OS=="mac" or OS=="ios"', {
95 'trace_event_sources': [ 96 'trace_event_sources': [
96 'trace_event/malloc_dump_provider.cc', 97 'trace_event/malloc_dump_provider.cc',
97 'trace_event/malloc_dump_provider.h', 98 'trace_event/malloc_dump_provider.h',
98 ], 99 ],
99 }], 100 }],
100 ['OS == "android"', { 101 ['OS == "android"', {
101 'trace_event_test_sources' : [ 102 'trace_event_test_sources' : [
102 'trace_event/trace_event_android_unittest.cc', 103 'trace_event/trace_event_android_unittest.cc',
103 ], 104 ],
104 }], 105 }],
105 ], 106 ],
106 }, 107 },
107 } 108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698