Index: remoting/client/BUILD.gn |
diff --git a/remoting/client/BUILD.gn b/remoting/client/BUILD.gn |
index 20de7c43bbdc426f0788578cbc997ad14b90da31..aaa1443ac8a5d6457fac4b8b479e65391be88d10 100644 |
--- a/remoting/client/BUILD.gn |
+++ b/remoting/client/BUILD.gn |
@@ -27,12 +27,12 @@ static_library("client") { |
"dual_buffer_frame_consumer.h", |
"empty_cursor_filter.cc", |
"empty_cursor_filter.h", |
+ "gesture_interpreter.cc", |
+ "gesture_interpreter.h", |
"host_experiment_sender.cc", |
"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 +45,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) |
@@ -58,7 +56,9 @@ static_library("client") { |
deps = [ |
"//remoting/base", |
+ "//remoting/client/display", |
Yuwei
2017/05/23 23:05:56
pnacl is unhappy again :(
Add deps only if !is_na
|
"//remoting/client/input", |
+ "//remoting/client/ui", |
"//remoting/codec:decoder", |
"//remoting/protocol", |
"//third_party/libyuv", |
@@ -83,18 +83,12 @@ static_library("client") { |
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 +110,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) |