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

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

Issue 2904443004: Allow generation of a chromium outdirs when enable_extensions=false (Closed)
Patch Set: Rebase 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
« no previous file with comments | « chrome/browser/media/router/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/chromecast_build.gni") 5 import("//build/config/chromecast_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 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after
1079 "webui/theme_handler.cc", 1079 "webui/theme_handler.cc",
1080 "webui/theme_handler.h", 1080 "webui/theme_handler.h",
1081 "window_sizer/window_sizer.cc", 1081 "window_sizer/window_sizer.cc",
1082 "window_sizer/window_sizer.h", 1082 "window_sizer/window_sizer.h",
1083 "zoom/chrome_zoom_level_otr_delegate.cc", 1083 "zoom/chrome_zoom_level_otr_delegate.cc",
1084 "zoom/chrome_zoom_level_otr_delegate.h", 1084 "zoom/chrome_zoom_level_otr_delegate.h",
1085 "zoom/chrome_zoom_level_prefs.cc", 1085 "zoom/chrome_zoom_level_prefs.cc",
1086 "zoom/chrome_zoom_level_prefs.h", 1086 "zoom/chrome_zoom_level_prefs.h",
1087 ] 1087 ]
1088 deps += [ 1088 deps += [
1089 "//apps",
1090 "//apps/ui/views",
1091 "//chrome/app/vector_icons", 1089 "//chrome/app/vector_icons",
1092 "//chrome/browser/profile_resetter:profile_reset_report_proto", 1090 "//chrome/browser/profile_resetter:profile_reset_report_proto",
1093 "//chrome/common:features", 1091 "//chrome/common:features",
1094 "//components/feedback/proto", 1092 "//components/feedback/proto",
1095 "//components/network_session_configurator/common", 1093 "//components/network_session_configurator/common",
1096 "//components/proximity_auth/webui", 1094 "//components/proximity_auth/webui",
1097 "//components/ui_metrics", 1095 "//components/ui_metrics",
1098 "//components/web_modal", 1096 "//components/web_modal",
1099 "//components/zoom", 1097 "//components/zoom",
1100 "//device/bluetooth", 1098 "//device/bluetooth",
1101 "//extensions/common:mojo",
1102 "//mash/public/interfaces", 1099 "//mash/public/interfaces",
1103 "//services/device/public/interfaces", 1100 "//services/device/public/interfaces",
1104 "//ui/vector_icons", 1101 "//ui/vector_icons",
1105 ] 1102 ]
1103
1104 if (enable_extensions) {
1105 deps += [
1106 "//apps",
1107 "//apps/ui/views",
1108 "//extensions/common:mojo",
1109 ]
1110 }
1106 } 1111 }
1107 1112
1108 if (enable_basic_printing || enable_print_preview) { 1113 if (enable_basic_printing || enable_print_preview) {
1109 deps += [ "//printing" ] 1114 deps += [ "//printing" ]
1110 } 1115 }
1111 1116
1112 if (enable_nacl) { 1117 if (enable_nacl) {
1113 sources += [ 1118 sources += [
1114 "webui/nacl_ui.cc", 1119 "webui/nacl_ui.cc",
1115 "webui/nacl_ui.h", 1120 "webui/nacl_ui.h",
(...skipping 2504 matching lines...) Expand 10 before | Expand all | Expand 10 after
3620 deps += [ 3625 deps += [
3621 "//chrome/test:test_support_ui", 3626 "//chrome/test:test_support_ui",
3622 "//components/zoom", 3627 "//components/zoom",
3623 ] 3628 ]
3624 } 3629 }
3625 3630
3626 if (enable_extensions) { 3631 if (enable_extensions) {
3627 deps += [ "//extensions/browser" ] 3632 deps += [ "//extensions/browser" ]
3628 } 3633 }
3629 } 3634 }
OLDNEW
« no previous file with comments | « chrome/browser/media/router/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698