| 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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 sources -= [ | 568 sources -= [ |
| 569 "signin/chrome_signin_status_metrics_provider_delegate.cc", | 569 "signin/chrome_signin_status_metrics_provider_delegate.cc", |
| 570 "signin/chrome_signin_status_metrics_provider_delegate.h", | 570 "signin/chrome_signin_status_metrics_provider_delegate.h", |
| 571 ] | 571 ] |
| 572 } | 572 } |
| 573 | 573 |
| 574 if (is_chromeos) { | 574 if (is_chromeos) { |
| 575 sources += [ | 575 sources += [ |
| 576 "metrics/leak_detector/leak_detector_controller.cc", | 576 "metrics/leak_detector/leak_detector_controller.cc", |
| 577 "metrics/leak_detector/leak_detector_controller.h", | 577 "metrics/leak_detector/leak_detector_controller.h", |
| 578 "metrics/leak_detector/leak_detector_remote_controller.cc", | |
| 579 "metrics/leak_detector/leak_detector_remote_controller.h", | |
| 580 ] | 578 ] |
| 581 public_deps += [ | 579 public_deps += [ "//components/metrics:leak_detector" ] |
| 582 "//components/metrics:interfaces", | |
| 583 "//components/metrics:leak_detector", | |
| 584 ] | |
| 585 } | 580 } |
| 586 | 581 |
| 587 if (use_cups) { | 582 if (use_cups) { |
| 588 configs += [ "//printing:cups" ] | 583 configs += [ "//printing:cups" ] |
| 589 } | 584 } |
| 590 if (is_desktop_linux) { | 585 if (is_desktop_linux) { |
| 591 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, | 586 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, |
| 592 ".", | 587 ".", |
| 593 "//chrome") | 588 "//chrome") |
| 594 configs += [ ":gnome_keyring" ] | 589 configs += [ ":gnome_keyring" ] |
| (...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1358 # linking all of the test support. | 1353 # linking all of the test support. |
| 1359 source_set("pepper_cdm_test_constants") { | 1354 source_set("pepper_cdm_test_constants") { |
| 1360 testonly = true | 1355 testonly = true |
| 1361 visibility = [ "//chrome/*" ] | 1356 visibility = [ "//chrome/*" ] |
| 1362 sources = [ | 1357 sources = [ |
| 1363 "media/pepper_cdm_test_constants.cc", | 1358 "media/pepper_cdm_test_constants.cc", |
| 1364 "media/pepper_cdm_test_constants.h", | 1359 "media/pepper_cdm_test_constants.h", |
| 1365 ] | 1360 ] |
| 1366 } | 1361 } |
| 1367 } | 1362 } |
| OLD | NEW |