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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 2030883004: Add LeakDetectorRemoteController as a Mojo service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 6 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 3632 matching lines...) Expand 10 before | Expand all | Expand 10 after
3643 'dependencies': [ 3643 'dependencies': [
3644 'browser_chromeos', 3644 'browser_chromeos',
3645 '../components/components.gyp:user_manager', 3645 '../components/components.gyp:user_manager',
3646 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', 3646 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources',
3647 ], 3647 ],
3648 }], 3648 }],
3649 ['chromeos==1', { 3649 ['chromeos==1', {
3650 'sources': [ 3650 'sources': [
3651 'browser/metrics/leak_detector_controller.cc', 3651 'browser/metrics/leak_detector_controller.cc',
3652 'browser/metrics/leak_detector_controller.h', 3652 'browser/metrics/leak_detector_controller.h',
3653 'browser/metrics/leak_detector_remote_controller.cc',
3654 'browser/metrics/leak_detector_remote_controller.h',
3653 ], 3655 ],
3654 'dependencies': [ 3656 'dependencies': [
3655 '../components/components.gyp:metrics_leak_detector', 3657 '../components/components.gyp:metrics_leak_detector',
3658 '../components/components.gyp:metrics_mojo_bindings',
3656 ], 3659 ],
3657 }], 3660 }],
3658 ['use_cups==1', { 3661 ['use_cups==1', {
3659 'dependencies': [ 3662 'dependencies': [
3660 '../printing/printing.gyp:cups', 3663 '../printing/printing.gyp:cups',
3661 ], 3664 ],
3662 }], 3665 }],
3663 ['use_gnome_keyring==1', { 3666 ['use_gnome_keyring==1', {
3664 'sources': [ '<@(chrome_browser_gnome_keyring_sources)' ], 3667 'sources': [ '<@(chrome_browser_gnome_keyring_sources)' ],
3665 'dependencies': [ 3668 'dependencies': [
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
4272 '../components/components.gyp:rlz', 4275 '../components/components.gyp:rlz',
4273 '../components/components.gyp:search_engines', 4276 '../components/components.gyp:search_engines',
4274 '../rlz/rlz.gyp:rlz_lib', 4277 '../rlz/rlz.gyp:rlz_lib',
4275 'common', 4278 'common',
4276 ], 4279 ],
4277 }, 4280 },
4278 ], 4281 ],
4279 }], 4282 }],
4280 ], 4283 ],
4281 } 4284 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698