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

Unified Diff: remoting/host/BUILD.gn

Issue 1997533002: Do not build unicode_to_keysym.cc when use_x11 == 0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: build fix Created 4 years, 7 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
« no previous file with comments | « no previous file | remoting/remoting_host.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/BUILD.gn
diff --git a/remoting/host/BUILD.gn b/remoting/host/BUILD.gn
index 70053e8855f76c5b546299150829c091b007f0df..f6ae2cd8eaaffd6b388d2fa598573b9ff054014c 100644
--- a/remoting/host/BUILD.gn
+++ b/remoting/host/BUILD.gn
@@ -140,6 +140,7 @@ if (is_mac) {
if (is_linux) {
# These will already be filtered out on non-Linux.
sources -= [
+ "linux/unicode_to_keysym.cc",
"linux/x11_util.cc",
"linux/x_server_clipboard.cc",
"linux/x_server_clipboard.h",
@@ -347,6 +348,9 @@ if (is_mac) {
"win/worker_process_launcher_unittest.cc",
]
+ if (!use_x11 && is_linux) {
+ sources -= [ "linux/unicode_to_keysym_unittest.cc" ]
+ }
if (use_ozone || is_chromeos) {
sources -= [ "local_input_monitor_unittest.cc" ]
}
« no previous file with comments | « no previous file | remoting/remoting_host.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698