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

Side by Side Diff: chrome/browser/ui/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/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 1175 matching lines...) Expand 10 before | Expand all | Expand 10 after
1186 "webui/uber/uber_ui.cc", 1186 "webui/uber/uber_ui.cc",
1187 "webui/uber/uber_ui.h", 1187 "webui/uber/uber_ui.h",
1188 "window_sizer/window_sizer.cc", 1188 "window_sizer/window_sizer.cc",
1189 "window_sizer/window_sizer.h", 1189 "window_sizer/window_sizer.h",
1190 "zoom/chrome_zoom_level_otr_delegate.cc", 1190 "zoom/chrome_zoom_level_otr_delegate.cc",
1191 "zoom/chrome_zoom_level_otr_delegate.h", 1191 "zoom/chrome_zoom_level_otr_delegate.h",
1192 "zoom/chrome_zoom_level_prefs.cc", 1192 "zoom/chrome_zoom_level_prefs.cc",
1193 "zoom/chrome_zoom_level_prefs.h", 1193 "zoom/chrome_zoom_level_prefs.h",
1194 ] 1194 ]
1195 deps += [ 1195 deps += [
1196 "//apps",
1197 "//apps/ui/views",
1198 "//chrome/app/vector_icons", 1196 "//chrome/app/vector_icons",
1199 "//chrome/browser/profile_resetter:profile_reset_report_proto", 1197 "//chrome/browser/profile_resetter:profile_reset_report_proto",
1200 "//chrome/common:features", 1198 "//chrome/common:features",
1201 "//components/feedback/proto", 1199 "//components/feedback/proto",
1202 "//components/proximity_auth/webui", 1200 "//components/proximity_auth/webui",
1203 "//components/web_modal", 1201 "//components/web_modal",
1204 "//components/zoom", 1202 "//components/zoom",
1205 "//device/bluetooth", 1203 "//device/bluetooth",
1206 "//extensions/common:mojo",
1207 "//mash/public/interfaces", 1204 "//mash/public/interfaces",
1208 "//services/device/public/interfaces", 1205 "//services/device/public/interfaces",
1209 "//ui/vector_icons", 1206 "//ui/vector_icons",
1210 ] 1207 ]
1208
1209 if (enable_extensions) {
1210 deps += [
1211 "//apps",
1212 "//apps/ui/views",
1213 "//extensions/common:mojo",
1214 ]
1215 }
1211 } 1216 }
1212 1217
1213 if (enable_basic_printing || enable_print_preview) { 1218 if (enable_basic_printing || enable_print_preview) {
1214 deps += [ "//printing" ] 1219 deps += [ "//printing" ]
1215 } 1220 }
1216 1221
1217 if (enable_nacl) { 1222 if (enable_nacl) {
1218 sources += [ 1223 sources += [
1219 "webui/nacl_ui.cc", 1224 "webui/nacl_ui.cc",
1220 "webui/nacl_ui.h", 1225 "webui/nacl_ui.h",
(...skipping 2390 matching lines...) Expand 10 before | Expand all | Expand 10 after
3611 deps += [ 3616 deps += [
3612 "//chrome/test:test_support_ui", 3617 "//chrome/test:test_support_ui",
3613 "//components/zoom", 3618 "//components/zoom",
3614 ] 3619 ]
3615 } 3620 }
3616 3621
3617 if (enable_extensions) { 3622 if (enable_extensions) {
3618 deps += [ "//extensions/browser" ] 3623 deps += [ "//extensions/browser" ]
3619 } 3624 }
3620 } 3625 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698