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

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: Add missing dependency of unit tests on //base to BUILD.gn 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
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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 'metrics/serialization/metric_sample.h', 235 'metrics/serialization/metric_sample.h',
236 'metrics/serialization/serialization_utils.cc', 236 'metrics/serialization/serialization_utils.cc',
237 'metrics/serialization/serialization_utils.h', 237 'metrics/serialization/serialization_utils.h',
238 ], 238 ],
239 'dependencies': [ 239 'dependencies': [
240 '../base/base.gyp:base', 240 '../base/base.gyp:base',
241 ], 241 ],
242 }, 242 },
243 ], 243 ],
244 }], 244 }],
245 ['chromeos==1', {
246 'targets': [
247 {
248 # GN version: //components/metrics:leak_detector
249 'target_name': 'metrics_leak_detector',
250 'type': 'static_library',
251 'dependencies': [
252 '../base/base.gyp:base',
253 ],
254 'sources': [
255 'metrics/leak_detector/call_stack_manager.cc',
256 'metrics/leak_detector/call_stack_manager.h',
257 'metrics/leak_detector/call_stack_table.cc',
258 'metrics/leak_detector/call_stack_table.h',
259 'metrics/leak_detector/custom_allocator.cc',
260 'metrics/leak_detector/custom_allocator.h',
261 'metrics/leak_detector/leak_analyzer.cc',
262 'metrics/leak_detector/leak_analyzer.h',
263 'metrics/leak_detector/leak_detector_impl.cc',
264 'metrics/leak_detector/leak_detector_impl.h',
265 'metrics/leak_detector/leak_detector_value_type.cc',
266 'metrics/leak_detector/leak_detector_value_type.h',
267 'metrics/leak_detector/ranked_list.cc',
268 'metrics/leak_detector/ranked_list.h',
269 ],
270 },
271 ],
272 }],
245 ['OS!="ios"', { 273 ['OS!="ios"', {
246 'targets': [ 274 'targets': [
247 { 275 {
248 # GN version: //components/metrics:gpu 276 # GN version: //components/metrics:gpu
249 'target_name': 'metrics_gpu', 277 'target_name': 'metrics_gpu',
250 'type': 'static_library', 278 'type': 'static_library',
251 'include_dirs': [ 279 'include_dirs': [
252 '..', 280 '..',
253 ], 281 ],
254 'dependencies': [ 282 'dependencies': [
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 ], 324 ],
297 'sources': [ 325 'sources': [
298 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.cc', 326 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.cc',
299 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.h', 327 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.h',
300 ], 328 ],
301 }, 329 },
302 ], 330 ],
303 }], 331 }],
304 ], 332 ],
305 } 333 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698