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

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

Issue 1681263003: metrics: Add leak detector controller in Chrome OS metrics system (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add content/public/browser to GN deps Created 4 years, 10 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 | « no previous file | chrome/browser/metrics/chromeos_metrics_provider.h » ('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("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 deps += [ "//chrome/browser/chromeos" ] 596 deps += [ "//chrome/browser/chromeos" ]
597 } 597 }
598 598
599 if (is_chromeos || is_ios) { 599 if (is_chromeos || is_ios) {
600 sources -= [ 600 sources -= [
601 "signin/chrome_signin_status_metrics_provider_delegate.cc", 601 "signin/chrome_signin_status_metrics_provider_delegate.cc",
602 "signin/chrome_signin_status_metrics_provider_delegate.h", 602 "signin/chrome_signin_status_metrics_provider_delegate.h",
603 ] 603 ]
604 } 604 }
605 605
606 if (is_chromeos) {
607 sources += [
608 "metrics/leak_detector_controller.cc",
609 "metrics/leak_detector_controller.h",
610 ]
611 deps += [ "//components/metrics:leak_detector" ]
612 }
613
606 if (use_cups) { 614 if (use_cups) {
607 configs += [ "//printing:cups" ] 615 configs += [ "//printing:cups" ]
608 } 616 }
609 if (is_desktop_linux) { 617 if (is_desktop_linux) {
610 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, 618 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources,
611 ".", 619 ".",
612 "//chrome") 620 "//chrome")
613 configs += [ ":gnome_keyring" ] 621 configs += [ ":gnome_keyring" ]
614 } 622 }
615 if (is_desktop_linux) { 623 if (is_desktop_linux) {
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after
1342 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1350 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1343 deps = [ 1351 deps = [
1344 "//components/google/core/browser", 1352 "//components/google/core/browser",
1345 "//components/omnibox/browser", 1353 "//components/omnibox/browser",
1346 "//components/rlz", 1354 "//components/rlz",
1347 "//components/search_engines", 1355 "//components/search_engines",
1348 "//rlz:rlz_lib", 1356 "//rlz:rlz_lib",
1349 ] 1357 ]
1350 } 1358 }
1351 } 1359 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/metrics/chromeos_metrics_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698