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

Side by Side Diff: components/components_tests.gyp

Issue 2169763002: Reland of "Mojo interface/service for Leak Detector on remote process" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add dependency on Mojo C++ services code to renderer 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 | « chrome/renderer/leak_detector/leak_detector_remote_client.cc ('k') | components/metrics.gypi » ('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 'variables': { 6 'variables': {
7 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 'metrics/profiler/tracking_synchronizer_unittest.cc', 383 'metrics/profiler/tracking_synchronizer_unittest.cc',
384 'metrics/stability_metrics_helper_unittest.cc', 384 'metrics/stability_metrics_helper_unittest.cc',
385 'metrics/ui/screen_info_metrics_provider_unittest.cc', 385 'metrics/ui/screen_info_metrics_provider_unittest.cc',
386 ], 386 ],
387 'metrics_leak_detector_unittest_sources': [ 387 'metrics_leak_detector_unittest_sources': [
388 'metrics/leak_detector/call_stack_manager_unittest.cc', 388 'metrics/leak_detector/call_stack_manager_unittest.cc',
389 'metrics/leak_detector/call_stack_table_unittest.cc', 389 'metrics/leak_detector/call_stack_table_unittest.cc',
390 'metrics/leak_detector/leak_analyzer_unittest.cc', 390 'metrics/leak_detector/leak_analyzer_unittest.cc',
391 'metrics/leak_detector/leak_detector_impl_unittest.cc', 391 'metrics/leak_detector/leak_detector_impl_unittest.cc',
392 'metrics/leak_detector/leak_detector_unittest.cc', 392 'metrics/leak_detector/leak_detector_unittest.cc',
393 'metrics/leak_detector/protobuf_to_mojo_converter_unittest.cc',
393 'metrics/leak_detector/ranked_set_unittest.cc', 394 'metrics/leak_detector/ranked_set_unittest.cc',
394 ], 395 ],
395 'mime_util_unittest_sources': [ 396 'mime_util_unittest_sources': [
396 'mime_util/mime_util_unittest.cc', 397 'mime_util/mime_util_unittest.cc',
397 ], 398 ],
398 'nacl_unittest_sources': [ 399 'nacl_unittest_sources': [
399 'nacl/browser/nacl_file_host_unittest.cc', 400 'nacl/browser/nacl_file_host_unittest.cc',
400 'nacl/browser/nacl_process_host_unittest.cc', 401 'nacl/browser/nacl_process_host_unittest.cc',
401 'nacl/browser/nacl_validation_cache_unittest.cc', 402 'nacl/browser/nacl_validation_cache_unittest.cc',
402 'nacl/browser/pnacl_host_unittest.cc', 403 'nacl/browser/pnacl_host_unittest.cc',
(...skipping 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after
1573 'sources!': [ 1574 'sources!': [
1574 'signin/core/browser/account_investigator_unittest.cc', 1575 'signin/core/browser/account_investigator_unittest.cc',
1575 'signin/core/browser/signin_status_metrics_provider_unittest.cc', 1576 'signin/core/browser/signin_status_metrics_provider_unittest.cc',
1576 'storage_monitor/storage_monitor_linux_unittest.cc', 1577 'storage_monitor/storage_monitor_linux_unittest.cc',
1577 ], 1578 ],
1578 'dependencies': [ 1579 'dependencies': [
1579 '../chromeos/chromeos.gyp:chromeos_test_support', 1580 '../chromeos/chromeos.gyp:chromeos_test_support',
1580 'components.gyp:arc', 1581 'components.gyp:arc',
1581 'components.gyp:arc_test_support', 1582 'components.gyp:arc_test_support',
1582 'components.gyp:metrics_leak_detector', 1583 'components.gyp:metrics_leak_detector',
1584 'components.gyp:metrics_mojo_bindings',
1583 'components.gyp:ownership', 1585 'components.gyp:ownership',
1584 'components.gyp:pairing', 1586 'components.gyp:pairing',
1585 'components.gyp:user_manager_test_support', 1587 'components.gyp:user_manager_test_support',
1586 'components.gyp:wifi_sync', 1588 'components.gyp:wifi_sync',
1587 ], 1589 ],
1588 }], 1590 }],
1589 ['OS=="linux"', { 1591 ['OS=="linux"', {
1590 'sources': [ 1592 'sources': [
1591 'metrics/serialization/serialization_utils_unittest.cc', 1593 'metrics/serialization/serialization_utils_unittest.cc',
1592 ], 1594 ],
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
2039 'dependencies': [ 2041 'dependencies': [
2040 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2042 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2041 ], 2043 ],
2042 }], 2044 }],
2043 ], 2045 ],
2044 }, 2046 },
2045 ], 2047 ],
2046 }], 2048 }],
2047 ], 2049 ],
2048 } 2050 }
OLDNEW
« no previous file with comments | « chrome/renderer/leak_detector/leak_detector_remote_client.cc ('k') | components/metrics.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698