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

Side by Side Diff: chrome/browser/BUILD.gn

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 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 sources -= [ 567 sources -= [
568 "signin/chrome_signin_status_metrics_provider_delegate.cc", 568 "signin/chrome_signin_status_metrics_provider_delegate.cc",
569 "signin/chrome_signin_status_metrics_provider_delegate.h", 569 "signin/chrome_signin_status_metrics_provider_delegate.h",
570 ] 570 ]
571 } 571 }
572 572
573 if (is_chromeos) { 573 if (is_chromeos) {
574 sources += [ 574 sources += [
575 "metrics/leak_detector_controller.cc", 575 "metrics/leak_detector_controller.cc",
576 "metrics/leak_detector_controller.h", 576 "metrics/leak_detector_controller.h",
577 "metrics/leak_detector_remote_controller.cc",
578 "metrics/leak_detector_remote_controller.h",
577 ] 579 ]
578 public_deps += [ "//components/metrics:leak_detector" ] 580 public_deps += [ "//components/metrics:leak_detector" ]
581 deps += [ "//components/metrics:interfaces" ]
Ilya Sherman 2016/06/07 23:03:38 Should this be listed in public_deps? It seems to
Simon Que 2016/06/08 01:14:18 Done.
579 } 582 }
580 583
581 if (use_cups) { 584 if (use_cups) {
582 configs += [ "//printing:cups" ] 585 configs += [ "//printing:cups" ]
583 } 586 }
584 if (is_desktop_linux) { 587 if (is_desktop_linux) {
585 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, 588 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources,
586 ".", 589 ".",
587 "//chrome") 590 "//chrome")
588 configs += [ ":gnome_keyring" ] 591 configs += [ ":gnome_keyring" ]
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1342 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1340 deps = [ 1343 deps = [
1341 "//components/google/core/browser", 1344 "//components/google/core/browser",
1342 "//components/omnibox/browser", 1345 "//components/omnibox/browser",
1343 "//components/rlz", 1346 "//components/rlz",
1344 "//components/search_engines", 1347 "//components/search_engines",
1345 "//rlz:rlz_lib", 1348 "//rlz:rlz_lib",
1346 ] 1349 ]
1347 } 1350 }
1348 } 1351 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/metrics/leak_detector_controller.h » ('j') | chrome/browser/metrics/leak_detector_controller.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698