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

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

Issue 2169763002: Reland of "Mojo interface/service for Leak Detector on remote process" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add dependency on Mojo C++ services code to renderer Created 4 years, 5 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
« no previous file with comments | « chrome/app/BUILD.gn ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 sources -= [ 579 sources -= [
580 "signin/chrome_signin_status_metrics_provider_delegate.cc", 580 "signin/chrome_signin_status_metrics_provider_delegate.cc",
581 "signin/chrome_signin_status_metrics_provider_delegate.h", 581 "signin/chrome_signin_status_metrics_provider_delegate.h",
582 ] 582 ]
583 } 583 }
584 584
585 if (is_chromeos) { 585 if (is_chromeos) {
586 sources += [ 586 sources += [
587 "metrics/leak_detector/leak_detector_controller.cc", 587 "metrics/leak_detector/leak_detector_controller.cc",
588 "metrics/leak_detector/leak_detector_controller.h", 588 "metrics/leak_detector/leak_detector_controller.h",
589 "metrics/leak_detector/leak_detector_remote_controller.cc",
590 "metrics/leak_detector/leak_detector_remote_controller.h",
589 ] 591 ]
590 public_deps += [ "//components/metrics:leak_detector" ] 592 public_deps += [
593 "//components/metrics/leak_detector:interfaces",
594 "//components/metrics/leak_detector:leak_detector",
595 ]
591 } 596 }
592 597
593 if (use_cups) { 598 if (use_cups) {
594 configs += [ "//printing:cups" ] 599 configs += [ "//printing:cups" ]
595 } 600 }
596 if (is_desktop_linux) { 601 if (is_desktop_linux) {
597 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, 602 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources,
598 ".", 603 ".",
599 "//chrome") 604 "//chrome")
600 configs += [ ":gnome_keyring" ] 605 configs += [ ":gnome_keyring" ]
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
1372 # linking all of the test support. 1377 # linking all of the test support.
1373 static_library("pepper_cdm_test_constants") { 1378 static_library("pepper_cdm_test_constants") {
1374 testonly = true 1379 testonly = true
1375 visibility = [ "//chrome/*" ] 1380 visibility = [ "//chrome/*" ]
1376 sources = [ 1381 sources = [
1377 "media/pepper_cdm_test_constants.cc", 1382 "media/pepper_cdm_test_constants.cc",
1378 "media/pepper_cdm_test_constants.h", 1383 "media/pepper_cdm_test_constants.h",
1379 ] 1384 ]
1380 } 1385 }
1381 } 1386 }
OLDNEW
« no previous file with comments | « chrome/app/BUILD.gn ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698