| 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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 | 565 |
| 566 if (is_chromeos || is_ios) { | 566 if (is_chromeos || is_ios) { |
| 567 sources -= [ | 567 sources -= [ |
| 568 "signin/chrome_signin_status_metrics_provider_delegate.cc", | 568 "signin/chrome_signin_status_metrics_provider_delegate.cc", |
| 569 "signin/chrome_signin_status_metrics_provider_delegate.h", | 569 "signin/chrome_signin_status_metrics_provider_delegate.h", |
| 570 ] | 570 ] |
| 571 } | 571 } |
| 572 | 572 |
| 573 if (is_chromeos) { | 573 if (is_chromeos) { |
| 574 sources += [ | 574 sources += [ |
| 575 "metrics/leak_detector_controller.cc", | 575 "metrics/leak_detector/leak_detector_controller.cc", |
| 576 "metrics/leak_detector_controller.h", | 576 "metrics/leak_detector/leak_detector_controller.h", |
| 577 ] | 577 ] |
| 578 public_deps += [ "//components/metrics:leak_detector" ] | 578 public_deps += [ "//components/metrics:leak_detector" ] |
| 579 } | 579 } |
| 580 | 580 |
| 581 if (use_cups) { | 581 if (use_cups) { |
| 582 configs += [ "//printing:cups" ] | 582 configs += [ "//printing:cups" ] |
| 583 } | 583 } |
| 584 if (is_desktop_linux) { | 584 if (is_desktop_linux) { |
| 585 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, | 585 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, |
| 586 ".", | 586 ".", |
| (...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1339 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1339 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1340 deps = [ | 1340 deps = [ |
| 1341 "//components/google/core/browser", | 1341 "//components/google/core/browser", |
| 1342 "//components/omnibox/browser", | 1342 "//components/omnibox/browser", |
| 1343 "//components/rlz", | 1343 "//components/rlz", |
| 1344 "//components/search_engines", | 1344 "//components/search_engines", |
| 1345 "//rlz:rlz_lib", | 1345 "//rlz:rlz_lib", |
| 1346 ] | 1346 ] |
| 1347 } | 1347 } |
| 1348 } | 1348 } |
| OLD | NEW |