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