| 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 3654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3665 "upgrade_observer.h", | 3665 "upgrade_observer.h", |
| 3666 "usb/usb_chooser_controller.cc", | 3666 "usb/usb_chooser_controller.cc", |
| 3667 "usb/usb_chooser_controller.h", | 3667 "usb/usb_chooser_controller.h", |
| 3668 "usb/web_usb_chooser_service.cc", | 3668 "usb/web_usb_chooser_service.cc", |
| 3669 "usb/web_usb_chooser_service.h", | 3669 "usb/web_usb_chooser_service.h", |
| 3670 "usb/web_usb_detector.cc", | 3670 "usb/web_usb_detector.cc", |
| 3671 "usb/web_usb_detector.h", | 3671 "usb/web_usb_detector.h", |
| 3672 ] | 3672 ] |
| 3673 deps += [ | 3673 deps += [ |
| 3674 ":theme_properties", | 3674 ":theme_properties", |
| 3675 "//apps", | |
| 3676 "//chrome/browser/policy:path_parser", | 3675 "//chrome/browser/policy:path_parser", |
| 3677 "//chrome/browser/profile_resetter:profile_reset_report_proto", | 3676 "//chrome/browser/profile_resetter:profile_reset_report_proto", |
| 3678 "//chrome/common/importer:interfaces", | 3677 "//chrome/common/importer:interfaces", |
| 3679 "//components/cryptauth", | 3678 "//components/cryptauth", |
| 3680 "//components/cryptauth/proto", | 3679 "//components/cryptauth/proto", |
| 3681 "//components/feedback", | 3680 "//components/feedback", |
| 3682 "//components/web_modal", | 3681 "//components/web_modal", |
| 3683 "//net:net_browser_services", | 3682 "//net:net_browser_services", |
| 3684 ] | 3683 ] |
| 3684 if (enable_extensions) { |
| 3685 deps += [ "//apps" ] |
| 3686 } |
| 3685 } | 3687 } |
| 3686 | 3688 |
| 3687 if (enable_pepper_cdms) { | 3689 if (enable_pepper_cdms) { |
| 3688 sources += [ | 3690 sources += [ |
| 3689 "component_updater/widevine_cdm_component_installer.cc", | 3691 "component_updater/widevine_cdm_component_installer.cc", |
| 3690 "component_updater/widevine_cdm_component_installer.h", | 3692 "component_updater/widevine_cdm_component_installer.h", |
| 3691 ] | 3693 ] |
| 3692 } | 3694 } |
| 3693 | 3695 |
| 3694 if (!is_chrome_branded) { | 3696 if (!is_chrome_branded) { |
| (...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4760 "media/pepper_cdm_test_constants.cc", | 4762 "media/pepper_cdm_test_constants.cc", |
| 4761 "media/pepper_cdm_test_constants.h", | 4763 "media/pepper_cdm_test_constants.h", |
| 4762 ] | 4764 ] |
| 4763 } | 4765 } |
| 4764 } | 4766 } |
| 4765 | 4767 |
| 4766 service_manifest("preferences_forwarder_manifest") { | 4768 service_manifest("preferences_forwarder_manifest") { |
| 4767 name = "preferences_forwarder" | 4769 name = "preferences_forwarder" |
| 4768 source = "prefs/forwarder_manifest.json" | 4770 source = "prefs/forwarder_manifest.json" |
| 4769 } | 4771 } |
| OLD | NEW |