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

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: Properly implement gn build 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 3594 matching lines...) Expand 10 before | Expand all | Expand 10 after
3605 3605
3606 # This file is generated by GRIT. 3606 # This file is generated by GRIT.
3607 '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/resources/grit/ui_chromeos_r esources_map.cc', 3607 '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/resources/grit/ui_chromeos_r esources_map.cc',
3608 ], 3608 ],
3609 'dependencies': [ 3609 'dependencies': [
3610 'browser_chromeos', 3610 'browser_chromeos',
3611 '../components/components.gyp:user_manager', 3611 '../components/components.gyp:user_manager',
3612 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', 3612 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources',
3613 ], 3613 ],
3614 }], 3614 }],
3615 ['chromeos==1 and enable_leak_detector==1', {
3616 'sources': [
3617 'browser/metrics/leak_detector_controller.cc',
3618 'browser/metrics/leak_detector_controller.h',
3619 ],
3620 'dependencies': [
3621 '../components/components.gyp:metrics_leak_detector',
3622 ],
3623 }],
3615 ['use_cups==1', { 3624 ['use_cups==1', {
3616 'dependencies': [ 3625 'dependencies': [
3617 '../printing/printing.gyp:cups', 3626 '../printing/printing.gyp:cups',
3618 ], 3627 ],
3619 }], 3628 }],
3620 ['use_gnome_keyring==1', { 3629 ['use_gnome_keyring==1', {
3621 'sources': [ '<@(chrome_browser_gnome_keyring_sources)' ], 3630 'sources': [ '<@(chrome_browser_gnome_keyring_sources)' ],
3622 'dependencies': [ 3631 'dependencies': [
3623 '../build/linux/system.gyp:gnome_keyring', 3632 '../build/linux/system.gyp:gnome_keyring',
3624 ], 3633 ],
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
4194 '../components/components.gyp:omnibox_browser', 4203 '../components/components.gyp:omnibox_browser',
4195 '../components/components.gyp:rlz', 4204 '../components/components.gyp:rlz',
4196 '../components/components.gyp:search_engines', 4205 '../components/components.gyp:search_engines',
4197 '../rlz/rlz.gyp:rlz_lib', 4206 '../rlz/rlz.gyp:rlz_lib',
4198 ], 4207 ],
4199 }, 4208 },
4200 ], 4209 ],
4201 }], 4210 }],
4202 ], 4211 ],
4203 } 4212 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698