Index: ui/aura/BUILD.gn |
diff --git a/ui/aura/BUILD.gn b/ui/aura/BUILD.gn |
index 2aa15ec9e600261c9165b0e41a1ad7925fddc0a9..31480a2adb91083b35be92636c44ea93c7c2a2ba 100644 |
--- a/ui/aura/BUILD.gn |
+++ b/ui/aura/BUILD.gn |
@@ -86,8 +86,6 @@ component("aura") { |
"window_tree_host_mac.h", |
"window_tree_host_mac.mm", |
"window_tree_host_observer.h", |
- "window_tree_host_win.cc", |
- "window_tree_host_win.h", |
"window_tree_host_x11.cc", |
"window_tree_host_x11.h", |
] |
@@ -137,10 +135,10 @@ component("aura") { |
] |
} |
- if (use_ozone) { |
+ if (use_ozone || is_win) { |
sources += [ |
- "window_tree_host_ozone.cc", |
- "window_tree_host_ozone.h", |
+ "window_tree_host_platform.cc", |
+ "window_tree_host_platform.h", |
] |
deps += [ "//ui/ozone" ] |
mfomitchev
2015/10/09 13:56:54
this dep should remain ozone only
|