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

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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 sources -= [ 568 sources -= [
569 "signin/chrome_signin_status_metrics_provider_delegate.cc", 569 "signin/chrome_signin_status_metrics_provider_delegate.cc",
570 "signin/chrome_signin_status_metrics_provider_delegate.h", 570 "signin/chrome_signin_status_metrics_provider_delegate.h",
571 ] 571 ]
572 } 572 }
573 573
574 if (is_chromeos) { 574 if (is_chromeos) {
575 sources += [ 575 sources += [
576 "metrics/leak_detector/leak_detector_controller.cc", 576 "metrics/leak_detector/leak_detector_controller.cc",
577 "metrics/leak_detector/leak_detector_controller.h", 577 "metrics/leak_detector/leak_detector_controller.h",
578 "metrics/leak_detector/leak_detector_remote_controller.cc",
579 "metrics/leak_detector/leak_detector_remote_controller.h",
578 ] 580 ]
579 public_deps += [ "//components/metrics:leak_detector" ] 581 public_deps += [
582 "//components/metrics:interfaces",
583 "//components/metrics:leak_detector",
584 ]
580 } 585 }
581 586
582 if (use_cups) { 587 if (use_cups) {
583 configs += [ "//printing:cups" ] 588 configs += [ "//printing:cups" ]
584 } 589 }
585 if (is_desktop_linux) { 590 if (is_desktop_linux) {
586 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, 591 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources,
587 ".", 592 ".",
588 "//chrome") 593 "//chrome")
589 configs += [ ":gnome_keyring" ] 594 configs += [ ":gnome_keyring" ]
(...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after
1353 # linking all of the test support. 1358 # linking all of the test support.
1354 source_set("pepper_cdm_test_constants") { 1359 source_set("pepper_cdm_test_constants") {
1355 testonly = true 1360 testonly = true
1356 visibility = [ "//chrome/*" ] 1361 visibility = [ "//chrome/*" ]
1357 sources = [ 1362 sources = [
1358 "media/pepper_cdm_test_constants.cc", 1363 "media/pepper_cdm_test_constants.cc",
1359 "media/pepper_cdm_test_constants.h", 1364 "media/pepper_cdm_test_constants.h",
1360 ] 1365 ]
1361 } 1366 }
1362 } 1367 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698