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

Unified Diff: remoting/client/BUILD.gn

Issue 2753963002: Refactoring and rewriting the chromoting jni instance to be chromoting session. (Closed)
Patch Set: Updating based on feedback. Created 3 years, 8 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_client_runtime.h » ('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 1d137cebc8a70f8dcb896db1fba71e402564de0c..4ad8bb3c2ab297129cd32bf8ab017c5b570c02bc 100644
--- a/remoting/client/BUILD.gn
+++ b/remoting/client/BUILD.gn
@@ -13,13 +13,15 @@ static_library("client") {
"audio_player.h",
"chromoting_client.cc",
"chromoting_client.h",
+ "chromoting_session.cc",
+ "chromoting_session.h",
"client_context.cc",
"client_context.h",
- "client_status_logger.cc",
- "client_status_logger.h",
"client_telemetry_logger.cc",
"client_telemetry_logger.h",
"client_user_interface.h",
+ "connect_to_host_info.cc",
+ "connect_to_host_info.h",
"cursor_shape_stub_proxy.cc",
"cursor_shape_stub_proxy.h",
"dual_buffer_frame_consumer.cc",
@@ -30,6 +32,8 @@ 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",
@@ -59,13 +63,13 @@ static_library("client") {
"//remoting/protocol",
"//third_party/libyuv",
"//third_party/webrtc/modules/desktop_capture:primitives",
+ "//ui/events:dom_keycode_converter",
]
libs = []
if (is_nacl) {
sources -= [
- "client_status_logger.cc",
"client_telemetry_logger.cc",
"server_log_entry_client.cc",
]
@@ -79,7 +83,9 @@ 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",
@@ -96,7 +102,6 @@ source_set("unit_tests") {
sources = [
"audio_player_unittest.cc",
"chromoting_client_runtime_unittest.cc",
- "client_status_logger_unittest.cc",
"client_telemetry_logger_unittest.cc",
"dual_buffer_frame_consumer_unittest.cc",
"empty_cursor_filter_unittest.cc",
« no previous file with comments | « remoting/BUILD.gn ('k') | remoting/client/chromoting_client_runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698