OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |