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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 sources -= [ | 581 sources -= [ |
582 "signin/chrome_signin_status_metrics_provider_delegate.cc", | 582 "signin/chrome_signin_status_metrics_provider_delegate.cc", |
583 "signin/chrome_signin_status_metrics_provider_delegate.h", | 583 "signin/chrome_signin_status_metrics_provider_delegate.h", |
584 ] | 584 ] |
585 } | 585 } |
586 | 586 |
587 if (is_chromeos) { | 587 if (is_chromeos) { |
588 sources += [ | 588 sources += [ |
589 "metrics/leak_detector/leak_detector_controller.cc", | 589 "metrics/leak_detector/leak_detector_controller.cc", |
590 "metrics/leak_detector/leak_detector_controller.h", | 590 "metrics/leak_detector/leak_detector_controller.h", |
| 591 "metrics/leak_detector/leak_detector_remote_controller.cc", |
| 592 "metrics/leak_detector/leak_detector_remote_controller.h", |
591 ] | 593 ] |
592 public_deps += [ "//components/metrics:leak_detector" ] | 594 public_deps += [ |
| 595 "//components/metrics:interfaces", |
| 596 "//components/metrics:leak_detector", |
| 597 ] |
593 } | 598 } |
594 | 599 |
595 if (use_cups) { | 600 if (use_cups) { |
596 configs += [ "//printing:cups" ] | 601 configs += [ "//printing:cups" ] |
597 } | 602 } |
598 if (is_desktop_linux) { | 603 if (is_desktop_linux) { |
599 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, | 604 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, |
600 ".", | 605 ".", |
601 "//chrome") | 606 "//chrome") |
602 configs += [ ":gnome_keyring" ] | 607 configs += [ ":gnome_keyring" ] |
(...skipping 766 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 source_set("pepper_cdm_test_constants") { | 1375 source_set("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 |