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

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: Mac build fixes: const arg in comparator, rm const in func return type 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 980 matching lines...) Expand 10 before | Expand all | Expand 10 after
1347 }], 1354 }],
1348 ['chromeos==1', { 1355 ['chromeos==1', {
1349 'sources': [ 1356 'sources': [
1350 'pairing/message_buffer_unittest.cc', 1357 'pairing/message_buffer_unittest.cc',
1351 'timers/alarm_timer_unittest.cc', 1358 'timers/alarm_timer_unittest.cc',
1352 'wifi_sync/wifi_config_delegate_chromeos_unittest.cc', 1359 'wifi_sync/wifi_config_delegate_chromeos_unittest.cc',
1353 'wifi_sync/wifi_credential_syncable_service_unittest.cc', 1360 'wifi_sync/wifi_credential_syncable_service_unittest.cc',
1354 'wifi_sync/wifi_credential_unittest.cc', 1361 'wifi_sync/wifi_credential_unittest.cc',
1355 'wifi_sync/wifi_security_class_chromeos_unittest.cc', 1362 'wifi_sync/wifi_security_class_chromeos_unittest.cc',
1356 'wifi_sync/wifi_security_class_unittest.cc', 1363 'wifi_sync/wifi_security_class_unittest.cc',
1364 '<@(metrics_leak_detector_unittest_sources)',
1357 '<@(ownership_unittest_sources)', 1365 '<@(ownership_unittest_sources)',
1358 ], 1366 ],
1359 'sources!': [ 1367 'sources!': [
1360 'signin/core/browser/signin_status_metrics_provider_unittest.cc', 1368 'signin/core/browser/signin_status_metrics_provider_unittest.cc',
1361 'storage_monitor/storage_monitor_linux_unittest.cc', 1369 'storage_monitor/storage_monitor_linux_unittest.cc',
1362 ], 1370 ],
1363 'dependencies': [ 1371 'dependencies': [
1364 '../chromeos/chromeos.gyp:chromeos_test_support', 1372 '../chromeos/chromeos.gyp:chromeos_test_support',
1373 'components.gyp:metrics_leak_detector',
1365 'components.gyp:ownership', 1374 'components.gyp:ownership',
1366 'components.gyp:pairing', 1375 'components.gyp:pairing',
1367 'components.gyp:user_manager_test_support', 1376 'components.gyp:user_manager_test_support',
1368 'components.gyp:wifi_sync', 1377 'components.gyp:wifi_sync',
1369 ], 1378 ],
1370 }], 1379 }],
1371 ['OS=="linux"', { 1380 ['OS=="linux"', {
1372 'sources': [ 1381 'sources': [
1373 'metrics/serialization/serialization_utils_unittest.cc', 1382 'metrics/serialization/serialization_utils_unittest.cc',
1374 ], 1383 ],
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
1819 'dependencies': [ 1828 'dependencies': [
1820 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1829 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1821 ], 1830 ],
1822 }], 1831 }],
1823 ], 1832 ],
1824 }, 1833 },
1825 ], 1834 ],
1826 }], 1835 }],
1827 ], 1836 ],
1828 } 1837 }
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