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

Side by Side Diff: components/metrics.gypi

Issue 1472763003: Reland of: components/metrics: Add runtime memory leak detector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 'metrics/serialization/metric_sample.h', 233 'metrics/serialization/metric_sample.h',
234 'metrics/serialization/serialization_utils.cc', 234 'metrics/serialization/serialization_utils.cc',
235 'metrics/serialization/serialization_utils.h', 235 'metrics/serialization/serialization_utils.h',
236 ], 236 ],
237 'dependencies': [ 237 'dependencies': [
238 '../base/base.gyp:base', 238 '../base/base.gyp:base',
239 ], 239 ],
240 }, 240 },
241 ], 241 ],
242 }], 242 }],
243 ['chromeos==1', {
244 'targets': [
245 {
246 # GN version: //components/metrics:leak_detector
247 'target_name': 'metrics_leak_detector',
248 'type': 'static_library',
249 'dependencies': [
250 '../base/base.gyp:base',
251 ],
252 'sources': [
253 'metrics/leak_detector/call_stack_manager.cc',
254 'metrics/leak_detector/call_stack_manager.h',
255 'metrics/leak_detector/call_stack_table.cc',
256 'metrics/leak_detector/call_stack_table.h',
257 'metrics/leak_detector/custom_allocator.cc',
258 'metrics/leak_detector/custom_allocator.h',
259 'metrics/leak_detector/leak_analyzer.cc',
260 'metrics/leak_detector/leak_analyzer.h',
261 'metrics/leak_detector/leak_detector_impl.cc',
262 'metrics/leak_detector/leak_detector_impl.h',
263 'metrics/leak_detector/leak_detector_value_type.cc',
264 'metrics/leak_detector/leak_detector_value_type.h',
265 'metrics/leak_detector/ranked_list.cc',
266 'metrics/leak_detector/ranked_list.h',
267 ],
268 },
269 ],
270 }],
243 ['OS!="ios"', { 271 ['OS!="ios"', {
244 'targets': [ 272 'targets': [
245 { 273 {
246 # GN version: //components/metrics:gpu 274 # GN version: //components/metrics:gpu
247 'target_name': 'metrics_gpu', 275 'target_name': 'metrics_gpu',
248 'type': 'static_library', 276 'type': 'static_library',
249 'include_dirs': [ 277 'include_dirs': [
250 '..', 278 '..',
251 ], 279 ],
252 'dependencies': [ 280 'dependencies': [
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 ], 322 ],
295 'sources': [ 323 'sources': [
296 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.cc', 324 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.cc',
297 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.h', 325 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.h',
298 ], 326 ],
299 }, 327 },
300 ], 328 ],
301 }], 329 }],
302 ], 330 ],
303 } 331 }
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