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

Side by Side Diff: components/metrics.gypi

Issue 2018983004: Mojo interface for Leak Detector on remote process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix conditional mojom source module declaration Created 4 years, 6 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 | « no previous file | 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 'metrics/leak_detector/leak_detector.cc', 273 'metrics/leak_detector/leak_detector.cc',
274 'metrics/leak_detector/leak_detector.h', 274 'metrics/leak_detector/leak_detector.h',
275 'metrics/leak_detector/leak_detector_impl.cc', 275 'metrics/leak_detector/leak_detector_impl.cc',
276 'metrics/leak_detector/leak_detector_impl.h', 276 'metrics/leak_detector/leak_detector_impl.h',
277 'metrics/leak_detector/leak_detector_value_type.cc', 277 'metrics/leak_detector/leak_detector_value_type.cc',
278 'metrics/leak_detector/leak_detector_value_type.h', 278 'metrics/leak_detector/leak_detector_value_type.h',
279 'metrics/leak_detector/ranked_set.cc', 279 'metrics/leak_detector/ranked_set.cc',
280 'metrics/leak_detector/ranked_set.h', 280 'metrics/leak_detector/ranked_set.h',
281 ], 281 ],
282 }, 282 },
283 {
284 'target_name': 'metrics_mojo_bindings',
285 'type': 'static_library',
286 'includes': [
287 '../mojo/mojom_bindings_generator.gypi',
288 ],
289 'sources': [
290 'metrics/leak_detector/leak_detector_remote.mojom',
291 ],
292 },
283 ], 293 ],
284 }], 294 }],
285 ['OS!="ios"', { 295 ['OS!="ios"', {
286 'targets': [ 296 'targets': [
287 { 297 {
288 # GN version: //components/metrics:gpu 298 # GN version: //components/metrics:gpu
289 'target_name': 'metrics_gpu', 299 'target_name': 'metrics_gpu',
290 'type': 'static_library', 300 'type': 'static_library',
291 'include_dirs': [ 301 'include_dirs': [
292 '..', 302 '..',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 ], 346 ],
337 'sources': [ 347 'sources': [
338 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.cc', 348 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.cc',
339 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.h', 349 'metrics/profiler/ios/ios_tracking_synchronizer_delegate.h',
340 ], 350 ],
341 }, 351 },
342 ], 352 ],
343 }], 353 }],
344 ], 354 ],
345 } 355 }
OLDNEW
« no previous file with comments | « no previous file | components/metrics/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698