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

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

Issue 2064463002: Mojo interface/service for Leak Detector on remote process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment about unretained binding; Decompose protobufs into mojo structs 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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 sources -= [ 581 sources -= [
582 "signin/chrome_signin_status_metrics_provider_delegate.cc", 582 "signin/chrome_signin_status_metrics_provider_delegate.cc",
583 "signin/chrome_signin_status_metrics_provider_delegate.h", 583 "signin/chrome_signin_status_metrics_provider_delegate.h",
584 ] 584 ]
585 } 585 }
586 586
587 if (is_chromeos) { 587 if (is_chromeos) {
588 sources += [ 588 sources += [
589 "metrics/leak_detector/leak_detector_controller.cc", 589 "metrics/leak_detector/leak_detector_controller.cc",
590 "metrics/leak_detector/leak_detector_controller.h", 590 "metrics/leak_detector/leak_detector_controller.h",
591 "metrics/leak_detector/leak_detector_remote_controller.cc",
592 "metrics/leak_detector/leak_detector_remote_controller.h",
591 ] 593 ]
592 public_deps += [ "//components/metrics:leak_detector" ] 594 public_deps += [
595 "//components/metrics:interfaces",
596 "//components/metrics:leak_detector",
597 ]
593 } 598 }
594 599
595 if (use_cups) { 600 if (use_cups) {
596 configs += [ "//printing:cups" ] 601 configs += [ "//printing:cups" ]
597 } 602 }
598 if (is_desktop_linux) { 603 if (is_desktop_linux) {
599 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, 604 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources,
600 ".", 605 ".",
601 "//chrome") 606 "//chrome")
602 configs += [ ":gnome_keyring" ] 607 configs += [ ":gnome_keyring" ]
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after
1369 # linking all of the test support. 1374 # linking all of the test support.
1370 source_set("pepper_cdm_test_constants") { 1375 source_set("pepper_cdm_test_constants") {
1371 testonly = true 1376 testonly = true
1372 visibility = [ "//chrome/*" ] 1377 visibility = [ "//chrome/*" ]
1373 sources = [ 1378 sources = [
1374 "media/pepper_cdm_test_constants.cc", 1379 "media/pepper_cdm_test_constants.cc",
1375 "media/pepper_cdm_test_constants.h", 1380 "media/pepper_cdm_test_constants.h",
1376 ] 1381 ]
1377 } 1382 }
1378 } 1383 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698