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

Side by Side Diff: components/components_tests.gyp

Issue 986503002: components/metrics: Add runtime memory leak detector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use namespace metrics::leak_detector; remove GYP flag (not needed for this CL) Created 5 years, 1 month 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.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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 'metrics/metrics_reporting_scheduler_unittest.cc', 347 'metrics/metrics_reporting_scheduler_unittest.cc',
348 'metrics/metrics_service_unittest.cc', 348 'metrics/metrics_service_unittest.cc',
349 'metrics/metrics_state_manager_unittest.cc', 349 'metrics/metrics_state_manager_unittest.cc',
350 'metrics/net/net_metrics_log_uploader_unittest.cc', 350 'metrics/net/net_metrics_log_uploader_unittest.cc',
351 'metrics/persisted_logs_unittest.cc', 351 'metrics/persisted_logs_unittest.cc',
352 'metrics/profiler/profiler_metrics_provider_unittest.cc', 352 'metrics/profiler/profiler_metrics_provider_unittest.cc',
353 'metrics/profiler/tracking_synchronizer_unittest.cc', 353 'metrics/profiler/tracking_synchronizer_unittest.cc',
354 'metrics/stability_metrics_helper_unittest.cc', 354 'metrics/stability_metrics_helper_unittest.cc',
355 'metrics/ui/screen_info_metrics_provider_unittest.cc', 355 'metrics/ui/screen_info_metrics_provider_unittest.cc',
356 ], 356 ],
357 'metrics_leak_detector_unittest_sources': [
358 'metrics/leak_detector/call_stack_manager_unittest.cc',
359 'metrics/leak_detector/call_stack_table_unittest.cc',
360 'metrics/leak_detector/leak_analyzer_unittest.cc',
361 'metrics/leak_detector/leak_detector_impl_unittest.cc',
362 'metrics/leak_detector/ranked_list_unittest.cc',
363 ],
357 'mime_util_unittest_sources': [ 364 'mime_util_unittest_sources': [
358 'mime_util/mime_util_unittest.cc', 365 'mime_util/mime_util_unittest.cc',
359 ], 366 ],
360 'nacl_unittest_sources': [ 367 'nacl_unittest_sources': [
361 'nacl/browser/nacl_file_host_unittest.cc', 368 'nacl/browser/nacl_file_host_unittest.cc',
362 'nacl/browser/nacl_process_host_unittest.cc', 369 'nacl/browser/nacl_process_host_unittest.cc',
363 'nacl/browser/nacl_validation_cache_unittest.cc', 370 'nacl/browser/nacl_validation_cache_unittest.cc',
364 'nacl/browser/pnacl_host_unittest.cc', 371 'nacl/browser/pnacl_host_unittest.cc',
365 'nacl/browser/pnacl_translation_cache_unittest.cc', 372 'nacl/browser/pnacl_translation_cache_unittest.cc',
366 'nacl/browser/test_nacl_browser_delegate.cc', 373 'nacl/browser/test_nacl_browser_delegate.cc',
(...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 }], 1339 }],
1333 ['chromeos==1', { 1340 ['chromeos==1', {
1334 'sources': [ 1341 'sources': [
1335 'pairing/message_buffer_unittest.cc', 1342 'pairing/message_buffer_unittest.cc',
1336 'timers/alarm_timer_unittest.cc', 1343 'timers/alarm_timer_unittest.cc',
1337 'wifi_sync/wifi_config_delegate_chromeos_unittest.cc', 1344 'wifi_sync/wifi_config_delegate_chromeos_unittest.cc',
1338 'wifi_sync/wifi_credential_syncable_service_unittest.cc', 1345 'wifi_sync/wifi_credential_syncable_service_unittest.cc',
1339 'wifi_sync/wifi_credential_unittest.cc', 1346 'wifi_sync/wifi_credential_unittest.cc',
1340 'wifi_sync/wifi_security_class_chromeos_unittest.cc', 1347 'wifi_sync/wifi_security_class_chromeos_unittest.cc',
1341 'wifi_sync/wifi_security_class_unittest.cc', 1348 'wifi_sync/wifi_security_class_unittest.cc',
1349 '<@(metrics_leak_detector_unittest_sources)',
1342 '<@(ownership_unittest_sources)', 1350 '<@(ownership_unittest_sources)',
1343 ], 1351 ],
1344 'sources!': [ 1352 'sources!': [
1345 'signin/core/browser/signin_status_metrics_provider_unittest.cc', 1353 'signin/core/browser/signin_status_metrics_provider_unittest.cc',
1346 'storage_monitor/storage_monitor_linux_unittest.cc', 1354 'storage_monitor/storage_monitor_linux_unittest.cc',
1347 ], 1355 ],
1348 'dependencies': [ 1356 'dependencies': [
1349 '../chromeos/chromeos.gyp:chromeos_test_support', 1357 '../chromeos/chromeos.gyp:chromeos_test_support',
1358 'components.gyp:metrics_leak_detector',
1350 'components.gyp:ownership', 1359 'components.gyp:ownership',
1351 'components.gyp:pairing', 1360 'components.gyp:pairing',
1352 'components.gyp:user_manager_test_support', 1361 'components.gyp:user_manager_test_support',
1353 'components.gyp:wifi_sync', 1362 'components.gyp:wifi_sync',
1354 ], 1363 ],
1355 }], 1364 }],
1356 ['OS=="linux"', { 1365 ['OS=="linux"', {
1357 'sources': [ 1366 'sources': [
1358 'metrics/serialization/serialization_utils_unittest.cc', 1367 'metrics/serialization/serialization_utils_unittest.cc',
1359 ], 1368 ],
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
1797 'dependencies': [ 1806 'dependencies': [
1798 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1807 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1799 ], 1808 ],
1800 }], 1809 }],
1801 ], 1810 ],
1802 }, 1811 },
1803 ], 1812 ],
1804 }], 1813 }],
1805 ], 1814 ],
1806 } 1815 }
OLDNEW
« no previous file with comments | « no previous file | components/metrics.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698