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

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

Issue 2753963002: Refactoring and rewriting the chromoting jni instance to be chromoting session. (Closed)
Patch Set: Pointer not obj. Created 3 years, 9 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
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 static_library("client") { 5 static_library("client") {
6 # Disabled the source filters because there are _mac files that need to 6 # Disabled the source filters because there are _mac files that need to
7 # be compiled on all platforms. 7 # be compiled on all platforms.
8 set_sources_assignment_filter([]) 8 set_sources_assignment_filter([])
9 9
10 sources = [ 10 sources = [
11 "audio_consumer.h", 11 "audio_consumer.h",
12 "audio_player.cc", 12 "audio_player.cc",
13 "audio_player.h", 13 "audio_player.h",
14 "chromoting_client.cc", 14 "chromoting_client.cc",
15 "chromoting_client.h", 15 "chromoting_client.h",
16 "chromoting_session.cc",
17 "chromoting_session.h",
16 "client_context.cc", 18 "client_context.cc",
17 "client_context.h", 19 "client_context.h",
18 "client_status_logger.cc", 20 "client_status_logger.cc",
19 "client_status_logger.h", 21 "client_status_logger.h",
20 "client_telemetry_logger.cc", 22 "client_telemetry_logger.cc",
21 "client_telemetry_logger.h", 23 "client_telemetry_logger.h",
22 "client_user_interface.h", 24 "client_user_interface.h",
25 "connect_to_host_info.cc",
26 "connect_to_host_info.h",
23 "cursor_shape_stub_proxy.cc", 27 "cursor_shape_stub_proxy.cc",
24 "cursor_shape_stub_proxy.h", 28 "cursor_shape_stub_proxy.h",
25 "dual_buffer_frame_consumer.cc", 29 "dual_buffer_frame_consumer.cc",
26 "dual_buffer_frame_consumer.h", 30 "dual_buffer_frame_consumer.h",
27 "empty_cursor_filter.cc", 31 "empty_cursor_filter.cc",
28 "empty_cursor_filter.h", 32 "empty_cursor_filter.h",
29 "host_experiment_sender.cc", 33 "host_experiment_sender.cc",
30 "host_experiment_sender.h", 34 "host_experiment_sender.h",
31 "key_event_mapper.cc", 35 "key_event_mapper.cc",
32 "key_event_mapper.h", 36 "key_event_mapper.h",
37 "native_device_keymap.cc",
38 "native_device_keymap.h",
33 "normalizing_input_filter_cros.cc", 39 "normalizing_input_filter_cros.cc",
34 "normalizing_input_filter_cros.h", 40 "normalizing_input_filter_cros.h",
35 "normalizing_input_filter_mac.cc", 41 "normalizing_input_filter_mac.cc",
36 "normalizing_input_filter_mac.h", 42 "normalizing_input_filter_mac.h",
37 "normalizing_input_filter_win.cc", 43 "normalizing_input_filter_win.cc",
38 "normalizing_input_filter_win.h", 44 "normalizing_input_filter_win.h",
39 "queued_task_poster.cc", 45 "queued_task_poster.cc",
40 "queued_task_poster.h", 46 "queued_task_poster.h",
41 "server_log_entry_client.cc", 47 "server_log_entry_client.cc",
42 "server_log_entry_client.h", 48 "server_log_entry_client.h",
(...skipping 29 matching lines...) Expand all
72 } else { 78 } else {
73 sources += [ 79 sources += [
74 "chromoting_client_runtime.cc", 80 "chromoting_client_runtime.cc",
75 "chromoting_client_runtime.h", 81 "chromoting_client_runtime.h",
76 ] 82 ]
77 } 83 }
78 if (is_android) { 84 if (is_android) {
79 sources += [ 85 sources += [
80 "audio_player_android.cc", 86 "audio_player_android.cc",
81 "audio_player_android.h", 87 "audio_player_android.h",
88 "native_device_keymap_android.cc",
82 ] 89 ]
90 sources -= [ "native_device_keymap.cc" ]
83 libs += [ 91 libs += [
84 "android", 92 "android",
85 "OpenSLES", 93 "OpenSLES",
86 ] 94 ]
87 } 95 }
88 } 96 }
89 97
90 source_set("unit_tests") { 98 source_set("unit_tests") {
91 testonly = true 99 testonly = true
92 100
(...skipping 24 matching lines...) Expand all
117 ] 125 ]
118 126
119 deps = [ 127 deps = [
120 ":client", 128 ":client",
121 "//remoting/proto", 129 "//remoting/proto",
122 "//testing/gmock", 130 "//testing/gmock",
123 "//testing/gtest", 131 "//testing/gtest",
124 "//third_party/webrtc/base:rtc_base_approved", 132 "//third_party/webrtc/base:rtc_base_approved",
125 ] 133 ]
126 } 134 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698