summaryrefslogtreecommitdiff
path: root/chromium/extensions/shell/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/extensions/shell/BUILD.gn')
-rw-r--r--chromium/extensions/shell/BUILD.gn10
1 files changed, 6 insertions, 4 deletions
diff --git a/chromium/extensions/shell/BUILD.gn b/chromium/extensions/shell/BUILD.gn
index 34fdf7d4bc1..c8076b3e7ef 100644
--- a/chromium/extensions/shell/BUILD.gn
+++ b/chromium/extensions/shell/BUILD.gn
@@ -72,16 +72,17 @@ source_set("app_shell_lib") {
# TODO(michaelpg): remove Mac support and always use aura.
if (use_aura) {
- deps += [
- "//ui/aura",
- "//ui/views",
- ]
+ deps += [ "//ui/aura" ]
if (use_x11) {
deps += [ "//ui/events/devices/x11" ]
}
}
+ if (toolkit_views) {
+ deps += [ "//ui/views" ]
+ }
+
sources = [
"app/shell_main_delegate.cc",
"app/shell_main_delegate.h",
@@ -183,6 +184,7 @@ source_set("app_shell_lib") {
"browser/shell_native_app_window_aura.h",
]
deps += [
+ "//ui/base/cursor",
"//ui/base/cursor/mojom:cursor_type",
"//ui/platform_window",
"//ui/wm",