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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1681263003: metrics: Add leak detector controller in Chrome OS metrics system (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add new files Created 4 years, 10 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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 'browser/download/notification/download_notification.cc', 995 'browser/download/notification/download_notification.cc',
996 'browser/download/notification/download_notification.h', 996 'browser/download/notification/download_notification.h',
997 'browser/download/notification/download_notification_manager.cc', 997 'browser/download/notification/download_notification_manager.cc',
998 'browser/download/notification/download_notification_manager.h', 998 'browser/download/notification/download_notification_manager.h',
999 'browser/media/protected_media_identifier_permission_context.cc', 999 'browser/media/protected_media_identifier_permission_context.cc',
1000 'browser/media/protected_media_identifier_permission_context.h', 1000 'browser/media/protected_media_identifier_permission_context.h',
1001 'browser/media/protected_media_identifier_permission_context_factory.cc', 1001 'browser/media/protected_media_identifier_permission_context_factory.cc',
1002 'browser/media/protected_media_identifier_permission_context_factory.h', 1002 'browser/media/protected_media_identifier_permission_context_factory.h',
1003 'browser/metrics/chromeos_metrics_provider.cc', 1003 'browser/metrics/chromeos_metrics_provider.cc',
1004 'browser/metrics/chromeos_metrics_provider.h', 1004 'browser/metrics/chromeos_metrics_provider.h',
1005 'browser/metrics/leak_detector_controller.cc',
1006 'browser/metrics/leak_detector_controller.h',
1005 'browser/metrics/perf/cpu_identity.cc', 1007 'browser/metrics/perf/cpu_identity.cc',
1006 'browser/metrics/perf/cpu_identity.h', 1008 'browser/metrics/perf/cpu_identity.h',
1007 'browser/metrics/perf/random_selector.cc', 1009 'browser/metrics/perf/random_selector.cc',
1008 'browser/metrics/perf/random_selector.h', 1010 'browser/metrics/perf/random_selector.h',
1009 'browser/metrics/perf/windowed_incognito_observer.cc', 1011 'browser/metrics/perf/windowed_incognito_observer.cc',
1010 'browser/metrics/perf/windowed_incognito_observer.h', 1012 'browser/metrics/perf/windowed_incognito_observer.h',
1011 # This is technically also dependent on enable_plugins but we don't 1013 # This is technically also dependent on enable_plugins but we don't
1012 # support ChromeOS with enable_plugins==0. 1014 # support ChromeOS with enable_plugins==0.
1013 'browser/renderer_host/pepper/pepper_platform_verification_message_filter. cc', 1015 'browser/renderer_host/pepper/pepper_platform_verification_message_filter. cc',
1014 'browser/renderer_host/pepper/pepper_platform_verification_message_filter. h', 1016 'browser/renderer_host/pepper/pepper_platform_verification_message_filter. h',
(...skipping 2368 matching lines...) Expand 10 before | Expand all | Expand 10 after
3383 '<(grit_out_dir)/grit/settings_resources_map.cc', 3385 '<(grit_out_dir)/grit/settings_resources_map.cc',
3384 '<(grit_out_dir)/grit/theme_resources_map.cc', 3386 '<(grit_out_dir)/grit/theme_resources_map.cc',
3385 ], 3387 ],
3386 'conditions': [ 3388 'conditions': [
3387 ['toolkit_views==1', { 3389 ['toolkit_views==1', {
3388 'dependencies': [ 3390 'dependencies': [
3389 '../ui/gfx/gfx.gyp:gfx_vector_icons', 3391 '../ui/gfx/gfx.gyp:gfx_vector_icons',
3390 '../ui/views/views.gyp:views' 3392 '../ui/views/views.gyp:views'
3391 ], 3393 ],
3392 }], 3394 }],
3395 ['enable_leak_detector==1', {
3396 'dependencies': [
3397 '../components/components.gyp:metrics_leak_detector',
3398 ],
3399 }],
3393 ], 3400 ],
3394 }, { # OS == "ios" 3401 }, { # OS == "ios"
3395 'dependencies': [ 3402 'dependencies': [
3396 '../net/net.gyp:net', 3403 '../net/net.gyp:net',
3397 ], 3404 ],
3398 # A few sources had been brought up for iOS before the decision not to 3405 # A few sources had been brought up for iOS before the decision not to
3399 # use chrome/ for iOS long-term. Keep building them to prevent iOS 3406 # use chrome/ for iOS long-term. Keep building them to prevent iOS
3400 # regressions until they have been componentized. 3407 # regressions until they have been componentized.
3401 'sources': [ 3408 'sources': [
3402 '<@(chrome_browser_ios_sources)', 3409 '<@(chrome_browser_ios_sources)',
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after
4194 '../components/components.gyp:omnibox_browser', 4201 '../components/components.gyp:omnibox_browser',
4195 '../components/components.gyp:rlz', 4202 '../components/components.gyp:rlz',
4196 '../components/components.gyp:search_engines', 4203 '../components/components.gyp:search_engines',
4197 '../rlz/rlz.gyp:rlz_lib', 4204 '../rlz/rlz.gyp:rlz_lib',
4198 ], 4205 ],
4199 }, 4206 },
4200 ], 4207 ],
4201 }], 4208 }],
4202 ], 4209 ],
4203 } 4210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698