Chromium Code Reviews| Index: ui/views/BUILD.gn |
| diff --git a/ui/views/BUILD.gn b/ui/views/BUILD.gn |
| index 08c4c72d4012f78f57de5c2535881553faa97ef9..2dc9809ee7063d109215afa986bd3f89601f012b 100644 |
| --- a/ui/views/BUILD.gn |
| +++ b/ui/views/BUILD.gn |
| @@ -58,11 +58,16 @@ component("views") { |
| sources -= [ |
| "linux_ui/linux_ui.h", |
| "linux_ui/linux_ui.cc", |
| - "linux_ui/status_icon_linux.h", |
| - "linux_ui/status_icon_linux.cc", |
| "linux_ui/window_button_order_observer.h", |
| "linux_ui/window_button_order_provider.cc", |
| ] |
| + if (is_linux) { |
| + # Already removed in non-Linux case. |
| + sources -= [ |
| + "linux_ui/status_icon_linux.h", |
|
scottmg
2014/07/17 19:55:49
maybe is_chromeos would be better if that's the sa
brettw
2014/07/17 20:05:59
Done.
|
| + "linux_ui/status_icon_linux.cc", |
| + ] |
| + } |
| } |
| if (is_win) { |