| 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("//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 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 sources -= [ | 578 sources -= [ |
| 579 "signin/chrome_signin_status_metrics_provider_delegate.cc", | 579 "signin/chrome_signin_status_metrics_provider_delegate.cc", |
| 580 "signin/chrome_signin_status_metrics_provider_delegate.h", | 580 "signin/chrome_signin_status_metrics_provider_delegate.h", |
| 581 ] | 581 ] |
| 582 } | 582 } |
| 583 | 583 |
| 584 if (is_chromeos) { | 584 if (is_chromeos) { |
| 585 sources += [ | 585 sources += [ |
| 586 "metrics/leak_detector/leak_detector_controller.cc", | 586 "metrics/leak_detector/leak_detector_controller.cc", |
| 587 "metrics/leak_detector/leak_detector_controller.h", | 587 "metrics/leak_detector/leak_detector_controller.h", |
| 588 "metrics/leak_detector/leak_detector_remote_controller.cc", | |
| 589 "metrics/leak_detector/leak_detector_remote_controller.h", | |
| 590 ] | 588 ] |
| 591 public_deps += [ | 589 public_deps += [ "//components/metrics:leak_detector" ] |
| 592 "//components/metrics/leak_detector:interfaces", | |
| 593 "//components/metrics/leak_detector:leak_detector", | |
| 594 ] | |
| 595 } | 590 } |
| 596 | 591 |
| 597 if (use_cups) { | 592 if (use_cups) { |
| 598 configs += [ "//printing:cups" ] | 593 configs += [ "//printing:cups" ] |
| 599 } | 594 } |
| 600 if (is_desktop_linux) { | 595 if (is_desktop_linux) { |
| 601 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, | 596 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, |
| 602 ".", | 597 ".", |
| 603 "//chrome") | 598 "//chrome") |
| 604 configs += [ ":gnome_keyring" ] | 599 configs += [ ":gnome_keyring" ] |
| (...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1374 # linking all of the test support. | 1369 # linking all of the test support. |
| 1375 static_library("pepper_cdm_test_constants") { | 1370 static_library("pepper_cdm_test_constants") { |
| 1376 testonly = true | 1371 testonly = true |
| 1377 visibility = [ "//chrome/*" ] | 1372 visibility = [ "//chrome/*" ] |
| 1378 sources = [ | 1373 sources = [ |
| 1379 "media/pepper_cdm_test_constants.cc", | 1374 "media/pepper_cdm_test_constants.cc", |
| 1380 "media/pepper_cdm_test_constants.h", | 1375 "media/pepper_cdm_test_constants.h", |
| 1381 ] | 1376 ] |
| 1382 } | 1377 } |
| 1383 } | 1378 } |
| OLD | NEW |