Chromium Code Reviews| Index: ui/display/BUILD.gn |
| diff --git a/ui/display/BUILD.gn b/ui/display/BUILD.gn |
| index e13abd9553c62f3413b7ccd546f530ccb8206819..94887717b0254939ee138aa4869c9d55c910cfae 100644 |
| --- a/ui/display/BUILD.gn |
| +++ b/ui/display/BUILD.gn |
| @@ -55,19 +55,21 @@ component("display") { |
| if (use_ozone) { |
| deps += [ "//ui/ozone" ] |
| - sources -= [ |
| - "chromeos/x11/display_configurator_x11.cc", |
| - "chromeos/x11/display_mode_x11.cc", |
| - "chromeos/x11/display_mode_x11.h", |
| - "chromeos/x11/display_snapshot_x11.cc", |
| - "chromeos/x11/display_snapshot_x11.h", |
| - "chromeos/x11/display_util_x11.cc", |
| - "chromeos/x11/display_util_x11.h", |
| - "chromeos/x11/native_display_delegate_x11.cc", |
| - "chromeos/x11/native_display_delegate_x11.h", |
| - "chromeos/x11/native_display_event_dispatcher_x11.cc", |
| - "chromeos/x11/native_display_event_dispatcher_x11.h", |
| - ] |
| + if (is_chromeos) { |
|
Chris Masone
2014/11/04 23:33:16
Ozone is pretty much a replacement for X11, so it
brettw
2014/11/04 23:47:52
These are filtered out in the non-chromeos case by
Chris Masone
2014/11/05 00:53:31
Acknowledged.
|
| + sources -= [ |
| + "chromeos/x11/display_configurator_x11.cc", |
| + "chromeos/x11/display_mode_x11.cc", |
| + "chromeos/x11/display_mode_x11.h", |
| + "chromeos/x11/display_snapshot_x11.cc", |
| + "chromeos/x11/display_snapshot_x11.h", |
| + "chromeos/x11/display_util_x11.cc", |
| + "chromeos/x11/display_util_x11.h", |
| + "chromeos/x11/native_display_delegate_x11.cc", |
| + "chromeos/x11/native_display_delegate_x11.h", |
| + "chromeos/x11/native_display_event_dispatcher_x11.cc", |
| + "chromeos/x11/native_display_event_dispatcher_x11.h", |
| + ] |
| + } |
| } |
| } |