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

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: Replace tcmalloc's wrappers with pthread_spinlock and standard allocator (no more tcmalloc changes) Created 5 years, 2 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
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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 'metrics/metrics_log_manager_unittest.cc', 321 'metrics/metrics_log_manager_unittest.cc',
322 'metrics/metrics_log_unittest.cc', 322 'metrics/metrics_log_unittest.cc',
323 'metrics/metrics_reporting_scheduler_unittest.cc', 323 'metrics/metrics_reporting_scheduler_unittest.cc',
324 'metrics/metrics_service_unittest.cc', 324 'metrics/metrics_service_unittest.cc',
325 'metrics/metrics_state_manager_unittest.cc', 325 'metrics/metrics_state_manager_unittest.cc',
326 'metrics/net/net_metrics_log_uploader_unittest.cc', 326 'metrics/net/net_metrics_log_uploader_unittest.cc',
327 'metrics/persisted_logs_unittest.cc', 327 'metrics/persisted_logs_unittest.cc',
328 'metrics/profiler/profiler_metrics_provider_unittest.cc', 328 'metrics/profiler/profiler_metrics_provider_unittest.cc',
329 'metrics/profiler/tracking_synchronizer_unittest.cc', 329 'metrics/profiler/tracking_synchronizer_unittest.cc',
330 ], 330 ],
331 'metrics_leak_detector_unittest_sources': [
332 'metrics/leak_detector/call_stack_manager_unittest.cc',
333 'metrics/leak_detector/call_stack_table_unittest.cc',
334 'metrics/leak_detector/leak_analyzer_unittest.cc',
335 'metrics/leak_detector/leak_detector_impl_unittest.cc',
336 'metrics/leak_detector/ranked_list_unittest.cc',
337 ],
331 'mime_util_unittest_sources': [ 338 'mime_util_unittest_sources': [
332 'mime_util/mime_util_unittest.cc', 339 'mime_util/mime_util_unittest.cc',
333 ], 340 ],
334 'nacl_unittest_sources': [ 341 'nacl_unittest_sources': [
335 'nacl/browser/nacl_file_host_unittest.cc', 342 'nacl/browser/nacl_file_host_unittest.cc',
336 'nacl/browser/nacl_process_host_unittest.cc', 343 'nacl/browser/nacl_process_host_unittest.cc',
337 'nacl/browser/nacl_validation_cache_unittest.cc', 344 'nacl/browser/nacl_validation_cache_unittest.cc',
338 'nacl/browser/pnacl_host_unittest.cc', 345 'nacl/browser/pnacl_host_unittest.cc',
339 'nacl/browser/pnacl_translation_cache_unittest.cc', 346 'nacl/browser/pnacl_translation_cache_unittest.cc',
340 'nacl/browser/test_nacl_browser_delegate.cc', 347 'nacl/browser/test_nacl_browser_delegate.cc',
(...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after
1223 }], 1230 }],
1224 ['chromeos==1', { 1231 ['chromeos==1', {
1225 'sources': [ 1232 'sources': [
1226 'pairing/message_buffer_unittest.cc', 1233 'pairing/message_buffer_unittest.cc',
1227 'timers/alarm_timer_unittest.cc', 1234 'timers/alarm_timer_unittest.cc',
1228 'wifi_sync/wifi_config_delegate_chromeos_unittest.cc', 1235 'wifi_sync/wifi_config_delegate_chromeos_unittest.cc',
1229 'wifi_sync/wifi_credential_syncable_service_unittest.cc', 1236 'wifi_sync/wifi_credential_syncable_service_unittest.cc',
1230 'wifi_sync/wifi_credential_unittest.cc', 1237 'wifi_sync/wifi_credential_unittest.cc',
1231 'wifi_sync/wifi_security_class_chromeos_unittest.cc', 1238 'wifi_sync/wifi_security_class_chromeos_unittest.cc',
1232 'wifi_sync/wifi_security_class_unittest.cc', 1239 'wifi_sync/wifi_security_class_unittest.cc',
1240 '<@(metrics_leak_detector_unittest_sources)',
1233 '<@(ownership_unittest_sources)', 1241 '<@(ownership_unittest_sources)',
1234 ], 1242 ],
1235 'sources!': [ 1243 'sources!': [
1236 'storage_monitor/storage_monitor_linux_unittest.cc', 1244 'storage_monitor/storage_monitor_linux_unittest.cc',
1237 ], 1245 ],
1238 'dependencies': [ 1246 'dependencies': [
1239 '../chromeos/chromeos.gyp:chromeos_test_support', 1247 '../chromeos/chromeos.gyp:chromeos_test_support',
1248 'components.gyp:metrics_leak_detector',
1240 'components.gyp:ownership', 1249 'components.gyp:ownership',
1241 'components.gyp:pairing', 1250 'components.gyp:pairing',
1242 'components.gyp:user_manager_test_support', 1251 'components.gyp:user_manager_test_support',
1243 'components.gyp:wifi_sync', 1252 'components.gyp:wifi_sync',
1244 ], 1253 ],
1245 }], 1254 }],
1246 ['OS=="linux"', { 1255 ['OS=="linux"', {
1247 'sources': [ 1256 'sources': [
1248 'metrics/serialization/serialization_utils_unittest.cc', 1257 'metrics/serialization/serialization_utils_unittest.cc',
1249 ], 1258 ],
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
1646 'invalidation/impl/android/junit/', 1655 'invalidation/impl/android/junit/',
1647 'policy/android/junit/' 1656 'policy/android/junit/'
1648 ], 1657 ],
1649 }, 1658 },
1650 'includes': [ '../build/host_jar.gypi' ], 1659 'includes': [ '../build/host_jar.gypi' ],
1651 }, 1660 },
1652 ], 1661 ],
1653 }], 1662 }],
1654 ], 1663 ],
1655 } 1664 }
OLDNEW
« build/common.gypi ('K') | « build/common.gypi ('k') | components/metrics.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698