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

Side by Side Diff: components/metrics.gypi

Issue 986503002: components/metrics: Add runtime memory leak detector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac build fixes: const arg in comparator, rm const in func return type Created 5 years 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/metrics/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/metrics 8 # GN version: //components/metrics
9 'target_name': 'metrics', 9 'target_name': 'metrics',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 }, 97 },
98 }], 98 }],
99 ['OS=="win"', { 99 ['OS=="win"', {
100 'sources!': [ 100 'sources!': [
101 'metrics/machine_id_provider_stub.cc', 101 'metrics/machine_id_provider_stub.cc',
102 ], 102 ],
103 }], 103 }],
104 ], 104 ],
105 }, 105 },
106 { 106 {
107 'target_name': 'metrics_leak_detector',
108 'type': 'static_library',
109 'dependencies': [
110 '../base/base.gyp:base',
111 ],
112 'sources': [
113 'metrics/leak_detector/call_stack_manager.cc',
114 'metrics/leak_detector/call_stack_manager.h',
115 'metrics/leak_detector/call_stack_table.cc',
116 'metrics/leak_detector/call_stack_table.h',
117 'metrics/leak_detector/custom_allocator.cc',
118 'metrics/leak_detector/custom_allocator.h',
119 'metrics/leak_detector/leak_analyzer.cc',
120 'metrics/leak_detector/leak_analyzer.h',
121 'metrics/leak_detector/leak_detector_impl.cc',
122 'metrics/leak_detector/leak_detector_impl.h',
123 'metrics/leak_detector/leak_detector_value_type.cc',
124 'metrics/leak_detector/leak_detector_value_type.h',
125 'metrics/leak_detector/ranked_list.cc',
126 'metrics/leak_detector/ranked_list.h',
127 ],
128 },
129 {
107 # GN version: //components/metrics:net 130 # GN version: //components/metrics:net
108 'target_name': 'metrics_net', 131 'target_name': 'metrics_net',
109 'type': 'static_library', 132 'type': 'static_library',
110 'include_dirs': [ 133 'include_dirs': [
111 '..', 134 '..',
112 ], 135 ],
113 'dependencies': [ 136 'dependencies': [
114 '../base/base.gyp:base', 137 '../base/base.gyp:base',
115 '../net/net.gyp:net', 138 '../net/net.gyp:net',
116 '../url/url.gyp:url_lib', 139 '../url/url.gyp:url_lib',
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 ], 319 ],
297 'sources': [ 320 'sources': [
298 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.cc', 321 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.cc',
299 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.h', 322 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.h',
300 ], 323 ],
301 }, 324 },
302 ], 325 ],
303 }], 326 }],
304 ], 327 ],
305 } 328 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/metrics/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698