Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2904443004: Allow generation of a chromium outdirs when enable_extensions=false (Closed)
Patch Set: Assert enable_extensions: common/BUILD.gn and features/BUILD.gn are marked TODO(crbug.com/731689) Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 3682 matching lines...) Expand 10 before | Expand all | Expand 10 after
3693 "upgrade_observer.h", 3693 "upgrade_observer.h",
3694 "usb/usb_chooser_controller.cc", 3694 "usb/usb_chooser_controller.cc",
3695 "usb/usb_chooser_controller.h", 3695 "usb/usb_chooser_controller.h",
3696 "usb/web_usb_chooser_service.cc", 3696 "usb/web_usb_chooser_service.cc",
3697 "usb/web_usb_chooser_service.h", 3697 "usb/web_usb_chooser_service.h",
3698 "usb/web_usb_detector.cc", 3698 "usb/web_usb_detector.cc",
3699 "usb/web_usb_detector.h", 3699 "usb/web_usb_detector.h",
3700 ] 3700 ]
3701 deps += [ 3701 deps += [
3702 ":theme_properties", 3702 ":theme_properties",
3703 "//apps",
3704 "//chrome/browser/policy:path_parser", 3703 "//chrome/browser/policy:path_parser",
3705 "//chrome/browser/profile_resetter:profile_reset_report_proto", 3704 "//chrome/browser/profile_resetter:profile_reset_report_proto",
3706 "//chrome/common/importer:interfaces", 3705 "//chrome/common/importer:interfaces",
3707 "//components/cryptauth", 3706 "//components/cryptauth",
3708 "//components/cryptauth/proto", 3707 "//components/cryptauth/proto",
3709 "//components/feedback", 3708 "//components/feedback",
3710 "//components/web_modal", 3709 "//components/web_modal",
3711 "//net:net_browser_services", 3710 "//net:net_browser_services",
3712 ] 3711 ]
3712 if (enable_extensions) {
3713 deps += [ "//apps" ]
Devlin 2017/06/09 19:11:51 Can we put this in the other enable_extensions blo
hugoh_UTC2 2017/06/12 09:19:08 Done.
3714 }
3713 } 3715 }
3714 3716
3715 if (enable_pepper_cdms) { 3717 if (enable_pepper_cdms) {
3716 sources += [ 3718 sources += [
3717 "component_updater/widevine_cdm_component_installer.cc", 3719 "component_updater/widevine_cdm_component_installer.cc",
3718 "component_updater/widevine_cdm_component_installer.h", 3720 "component_updater/widevine_cdm_component_installer.h",
3719 ] 3721 ]
3720 } 3722 }
3721 3723
3722 if (!is_chrome_branded) { 3724 if (!is_chrome_branded) {
(...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after
4772 "//components/search_engines", 4774 "//components/search_engines",
4773 "//rlz:rlz_lib", 4775 "//rlz:rlz_lib",
4774 ] 4776 ]
4775 } 4777 }
4776 } 4778 }
4777 4779
4778 service_manifest("preferences_forwarder_manifest") { 4780 service_manifest("preferences_forwarder_manifest") {
4779 name = "preferences_forwarder" 4781 name = "preferences_forwarder"
4780 source = "prefs/forwarder_manifest.json" 4782 source = "prefs/forwarder_manifest.json"
4781 } 4783 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698