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

Side by Side Diff: remoting/host/BUILD.gn

Issue 2346643003: [Remoting Host] Handle text event characters that are not presented on the keyboard (Closed)
Patch Set: Reviewer's Feedback Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « no previous file | remoting/host/input_injector_x11.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/util/process_version.gni") 5 import("//build/util/process_version.gni")
6 import("//remoting/build/config/remoting_build.gni") 6 import("//remoting/build/config/remoting_build.gni")
7 7
8 group("all_tests") { 8 group("all_tests") {
9 testonly = true 9 testonly = true
10 10
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 "ipc_video_frame_capturer.cc", 201 "ipc_video_frame_capturer.cc",
202 "ipc_video_frame_capturer.h", 202 "ipc_video_frame_capturer.h",
203 "it2me_desktop_environment.cc", 203 "it2me_desktop_environment.cc",
204 "it2me_desktop_environment.h", 204 "it2me_desktop_environment.h",
205 "linux/audio_pipe_reader.cc", 205 "linux/audio_pipe_reader.cc",
206 "linux/audio_pipe_reader.h", 206 "linux/audio_pipe_reader.h",
207 "linux/certificate_watcher.cc", 207 "linux/certificate_watcher.cc",
208 "linux/certificate_watcher.h", 208 "linux/certificate_watcher.h",
209 "linux/unicode_to_keysym.cc", 209 "linux/unicode_to_keysym.cc",
210 "linux/unicode_to_keysym.h", 210 "linux/unicode_to_keysym.h",
211 "linux/x11_character_injector.cc",
212 "linux/x11_character_injector.h",
213 "linux/x11_keyboard_impl.cc",
214 "linux/x11_keyboard_impl.h",
211 "linux/x11_util.cc", 215 "linux/x11_util.cc",
212 "linux/x11_util.h", 216 "linux/x11_util.h",
213 "linux/x_server_clipboard.cc", 217 "linux/x_server_clipboard.cc",
214 "linux/x_server_clipboard.h", 218 "linux/x_server_clipboard.h",
215 "local_input_monitor.h", 219 "local_input_monitor.h",
216 "local_input_monitor_chromeos.cc", 220 "local_input_monitor_chromeos.cc",
217 "local_input_monitor_mac.mm", 221 "local_input_monitor_mac.mm",
218 "local_input_monitor_win.cc", 222 "local_input_monitor_win.cc",
219 "local_input_monitor_x11.cc", 223 "local_input_monitor_x11.cc",
220 "logging.h", 224 "logging.h",
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 sources -= [ 345 sources -= [
342 "clipboard_x11.cc", 346 "clipboard_x11.cc",
343 "desktop_resizer_x11.cc", 347 "desktop_resizer_x11.cc",
344 "input_injector_x11.cc", 348 "input_injector_x11.cc",
345 "local_input_monitor_x11.cc", 349 "local_input_monitor_x11.cc",
346 ] 350 ]
347 if (is_linux) { 351 if (is_linux) {
348 # These will already be filtered out on non-Linux. 352 # These will already be filtered out on non-Linux.
349 sources -= [ 353 sources -= [
350 "linux/unicode_to_keysym.cc", 354 "linux/unicode_to_keysym.cc",
355 "linux/x11_keyboard_impl.cc",
356 "linux/x11_keyboard_impl.h",
351 "linux/x11_util.cc", 357 "linux/x11_util.cc",
352 "linux/x_server_clipboard.cc", 358 "linux/x_server_clipboard.cc",
353 "linux/x_server_clipboard.h", 359 "linux/x_server_clipboard.h",
354 ] 360 ]
355 } 361 }
356 } 362 }
357 363
358 if (!use_ozone) { 364 if (!use_ozone) {
359 sources -= [ "desktop_resizer_ozone.cc" ] 365 sources -= [ "desktop_resizer_ozone.cc" ]
360 } 366 }
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 "host_extension_session_manager_unittest.cc", 504 "host_extension_session_manager_unittest.cc",
499 "host_power_save_blocker_unittest.cc", 505 "host_power_save_blocker_unittest.cc",
500 "host_status_logger_unittest.cc", 506 "host_status_logger_unittest.cc",
501 "ipc_desktop_environment_unittest.cc", 507 "ipc_desktop_environment_unittest.cc",
502 "it2me/it2me_confirmation_dialog_proxy_unittest.cc", 508 "it2me/it2me_confirmation_dialog_proxy_unittest.cc",
503 "it2me/it2me_host_unittest.cc", 509 "it2me/it2me_host_unittest.cc",
504 "it2me/it2me_native_messaging_host_unittest.cc", 510 "it2me/it2me_native_messaging_host_unittest.cc",
505 "linux/audio_pipe_reader_unittest.cc", 511 "linux/audio_pipe_reader_unittest.cc",
506 "linux/certificate_watcher_unittest.cc", 512 "linux/certificate_watcher_unittest.cc",
507 "linux/unicode_to_keysym_unittest.cc", 513 "linux/unicode_to_keysym_unittest.cc",
514 "linux/x11_character_injector_unittest.cc",
508 "linux/x_server_clipboard_unittest.cc", 515 "linux/x_server_clipboard_unittest.cc",
509 "local_input_monitor_unittest.cc", 516 "local_input_monitor_unittest.cc",
510 "mouse_cursor_monitor_proxy_unittest.cc", 517 "mouse_cursor_monitor_proxy_unittest.cc",
511 "mouse_shape_pump_unittest.cc", 518 "mouse_shape_pump_unittest.cc",
512 "native_messaging/native_messaging_reader_unittest.cc", 519 "native_messaging/native_messaging_reader_unittest.cc",
513 "native_messaging/native_messaging_writer_unittest.cc", 520 "native_messaging/native_messaging_writer_unittest.cc",
514 "pairing_registry_delegate_linux_unittest.cc", 521 "pairing_registry_delegate_linux_unittest.cc",
515 "pairing_registry_delegate_win_unittest.cc", 522 "pairing_registry_delegate_win_unittest.cc",
516 "pin_hash_unittest.cc", 523 "pin_hash_unittest.cc",
517 "policy_watcher_unittest.cc", 524 "policy_watcher_unittest.cc",
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
1368 "mac/me2me_preference_pane_disable.xib", 1375 "mac/me2me_preference_pane_disable.xib",
1369 1376
1370 #"mac/me2me_preference_pane-Info.plist", 1377 #"mac/me2me_preference_pane-Info.plist",
1371 ] 1378 ]
1372 } 1379 }
1373 } else { 1380 } else {
1374 group("remoting_me2me_host_archive") { 1381 group("remoting_me2me_host_archive") {
1375 } 1382 }
1376 } 1383 }
1377 } 1384 }
OLDNEW
« no previous file with comments | « no previous file | remoting/host/input_injector_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698