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

Unified Diff: ui/views/BUILD.gn

Issue 400233002: GN Windows build fixes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« media/BUILD.gn ('K') | « third_party/boringssl/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/BUILD.gn
diff --git a/ui/views/BUILD.gn b/ui/views/BUILD.gn
index 8839d0f31d107080e1cc79e0835e1351324caa91..f5724630452e796f287c0305267f18b1ad71a2c1 100644
--- a/ui/views/BUILD.gn
+++ b/ui/views/BUILD.gn
@@ -58,13 +58,18 @@ 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_chromeos) {
+ sources -= [
+ "linux_ui/status_icon_linux.h",
+ "linux_ui/status_icon_linux.cc",
+ ]
+ }
+
if (is_win) {
sources += gypi_values.views_win_sources
cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
« media/BUILD.gn ('K') | « third_party/boringssl/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698