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

Side by Side Diff: components/metrics.gypi

Issue 2064463002: Mojo interface/service for Leak Detector on remote process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update ProtobufToMojoConverterTest Created 4 years, 5 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
« 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 'metrics/leak_detector/custom_allocator.cc', 271 'metrics/leak_detector/custom_allocator.cc',
272 'metrics/leak_detector/custom_allocator.h', 272 'metrics/leak_detector/custom_allocator.h',
273 'metrics/leak_detector/leak_analyzer.cc', 273 'metrics/leak_detector/leak_analyzer.cc',
274 'metrics/leak_detector/leak_analyzer.h', 274 'metrics/leak_detector/leak_analyzer.h',
275 'metrics/leak_detector/leak_detector.cc', 275 'metrics/leak_detector/leak_detector.cc',
276 'metrics/leak_detector/leak_detector.h', 276 'metrics/leak_detector/leak_detector.h',
277 'metrics/leak_detector/leak_detector_impl.cc', 277 'metrics/leak_detector/leak_detector_impl.cc',
278 'metrics/leak_detector/leak_detector_impl.h', 278 'metrics/leak_detector/leak_detector_impl.h',
279 'metrics/leak_detector/leak_detector_value_type.cc', 279 'metrics/leak_detector/leak_detector_value_type.cc',
280 'metrics/leak_detector/leak_detector_value_type.h', 280 'metrics/leak_detector/leak_detector_value_type.h',
281 'metrics/leak_detector/protobuf_to_mojo_converter.cc',
282 'metrics/leak_detector/protobuf_to_mojo_converter.h',
281 'metrics/leak_detector/ranked_set.cc', 283 'metrics/leak_detector/ranked_set.cc',
282 'metrics/leak_detector/ranked_set.h', 284 'metrics/leak_detector/ranked_set.h',
283 ], 285 ],
284 }, 286 },
287 {
288 'target_name': 'metrics_mojo_bindings',
289 'type': 'static_library',
290 'includes': [
291 '../mojo/mojom_bindings_generator.gypi',
292 ],
293 'sources': [
294 'metrics/leak_detector/leak_detector.mojom',
295 ],
296 },
285 ], 297 ],
286 }], 298 }],
287 ['OS!="ios"', { 299 ['OS!="ios"', {
288 'targets': [ 300 'targets': [
289 { 301 {
290 # GN version: //components/metrics:gpu 302 # GN version: //components/metrics:gpu
291 'target_name': 'metrics_gpu', 303 'target_name': 'metrics_gpu',
292 'type': 'static_library', 304 'type': 'static_library',
293 'include_dirs': [ 305 'include_dirs': [
294 '..', 306 '..',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 ], 350 ],
339 'sources': [ 351 'sources': [
340 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.cc', 352 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.cc',
341 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.h', 353 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.h',
342 ], 354 ],
343 }, 355 },
344 ], 356 ],
345 }], 357 }],
346 ], 358 ],
347 } 359 }
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