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

Unified Diff: remoting/client/BUILD.gn

Issue 2903623002: Moving input related classes to the input folder. (Closed)
Patch Set: Hide gesture code from nacl. Created 3 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 | « remoting/BUILD.gn ('k') | remoting/client/chromoting_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/BUILD.gn
diff --git a/remoting/client/BUILD.gn b/remoting/client/BUILD.gn
index 20de7c43bbdc426f0788578cbc997ad14b90da31..6a966b040aea7f7dd9de8e7514276d0affdf8579 100644
--- a/remoting/client/BUILD.gn
+++ b/remoting/client/BUILD.gn
@@ -31,8 +31,6 @@ static_library("client") {
"host_experiment_sender.h",
"key_event_mapper.cc",
"key_event_mapper.h",
- "native_device_keymap.cc",
- "native_device_keymap.h",
"normalizing_input_filter_cros.cc",
"normalizing_input_filter_cros.h",
"normalizing_input_filter_mac.cc",
@@ -45,8 +43,6 @@ static_library("client") {
"server_log_entry_client.h",
"software_video_renderer.cc",
"software_video_renderer.h",
- "touch_input_scaler.cc",
- "touch_input_scaler.h",
]
set_sources_assignment_filter(sources_assignment_filter)
@@ -77,24 +73,24 @@ static_library("client") {
sources += [
"chromoting_client_runtime.cc",
"chromoting_client_runtime.h",
+ "gesture_interpreter.cc",
+ "gesture_interpreter.h",
+ ]
+ deps += [
+ "//remoting/client/display",
+ "//remoting/client/ui",
Yuwei 2017/05/24 01:34:12 Is there anything in client/ui that doesn't work w
nicholss 2017/05/24 15:41:33 It does not really matter because the gesture_inte
]
}
if (is_android) {
sources += [
"audio_player_android.cc",
"audio_player_android.h",
- "native_device_keymap_android.cc",
]
- sources -= [ "native_device_keymap.cc" ]
libs += [
"android",
"OpenSLES",
]
}
- if (is_ios) {
- sources += [ "native_device_keymap_ios.cc" ]
- sources -= [ "native_device_keymap.cc" ]
- }
}
source_set("unit_tests") {
@@ -116,7 +112,6 @@ source_set("unit_tests") {
"queued_task_poster_unittest.cc",
"server_log_entry_client_unittest.cc",
"software_video_renderer_unittest.cc",
- "touch_input_scaler_unittest.cc",
]
set_sources_assignment_filter(sources_assignment_filter)
« no previous file with comments | « remoting/BUILD.gn ('k') | remoting/client/chromoting_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698