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

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

Issue 2843373005: [Remoting Client] DesktopViewport Implementation (Closed)
Patch Set: Rename SimpleMatrix to ViewMatrix 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 unified diff | Download patch
« no previous file with comments | « no previous file | remoting/client/desktop_viewport.h » ('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 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", 16 "chromoting_session.cc",
17 "chromoting_session.h", 17 "chromoting_session.h",
18 "client_context.cc", 18 "client_context.cc",
19 "client_context.h", 19 "client_context.h",
20 "client_telemetry_logger.cc", 20 "client_telemetry_logger.cc",
21 "client_telemetry_logger.h", 21 "client_telemetry_logger.h",
22 "client_user_interface.h", 22 "client_user_interface.h",
23 "connect_to_host_info.cc", 23 "connect_to_host_info.cc",
24 "connect_to_host_info.h", 24 "connect_to_host_info.h",
25 "cursor_shape_stub_proxy.cc", 25 "cursor_shape_stub_proxy.cc",
26 "cursor_shape_stub_proxy.h", 26 "cursor_shape_stub_proxy.h",
27 "desktop_viewport.cc",
28 "desktop_viewport.h",
27 "dual_buffer_frame_consumer.cc", 29 "dual_buffer_frame_consumer.cc",
28 "dual_buffer_frame_consumer.h", 30 "dual_buffer_frame_consumer.h",
29 "empty_cursor_filter.cc", 31 "empty_cursor_filter.cc",
30 "empty_cursor_filter.h", 32 "empty_cursor_filter.h",
31 "host_experiment_sender.cc", 33 "host_experiment_sender.cc",
32 "host_experiment_sender.h", 34 "host_experiment_sender.h",
33 "key_event_mapper.cc", 35 "key_event_mapper.cc",
34 "key_event_mapper.h", 36 "key_event_mapper.h",
35 "native_device_keymap.cc", 37 "native_device_keymap.cc",
36 "native_device_keymap.h", 38 "native_device_keymap.h",
37 "normalizing_input_filter_cros.cc", 39 "normalizing_input_filter_cros.cc",
38 "normalizing_input_filter_cros.h", 40 "normalizing_input_filter_cros.h",
39 "normalizing_input_filter_mac.cc", 41 "normalizing_input_filter_mac.cc",
40 "normalizing_input_filter_mac.h", 42 "normalizing_input_filter_mac.h",
41 "normalizing_input_filter_win.cc", 43 "normalizing_input_filter_win.cc",
42 "normalizing_input_filter_win.h", 44 "normalizing_input_filter_win.h",
43 "queued_task_poster.cc", 45 "queued_task_poster.cc",
44 "queued_task_poster.h", 46 "queued_task_poster.h",
45 "server_log_entry_client.cc", 47 "server_log_entry_client.cc",
46 "server_log_entry_client.h", 48 "server_log_entry_client.h",
47 "software_video_renderer.cc", 49 "software_video_renderer.cc",
48 "software_video_renderer.h", 50 "software_video_renderer.h",
49 "touch_input_scaler.cc", 51 "touch_input_scaler.cc",
50 "touch_input_scaler.h", 52 "touch_input_scaler.h",
53 "view_matrix.cc",
54 "view_matrix.h",
51 ] 55 ]
52 set_sources_assignment_filter(sources_assignment_filter) 56 set_sources_assignment_filter(sources_assignment_filter)
53 57
54 configs += [ 58 configs += [
55 "//build/config/compiler:wexit_time_destructors", 59 "//build/config/compiler:wexit_time_destructors",
56 "//remoting/build/config:version", 60 "//remoting/build/config:version",
57 "//remoting/build/config:enable_webrtc_remoting_client", 61 "//remoting/build/config:enable_webrtc_remoting_client",
58 ] 62 ]
59 63
60 deps = [ 64 deps = [
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 source_set("unit_tests") { 100 source_set("unit_tests") {
97 testonly = true 101 testonly = true
98 102
99 # Disabled the source filters because there are _mac files that need to 103 # Disabled the source filters because there are _mac files that need to
100 # be compiled on all platforms. 104 # be compiled on all platforms.
101 set_sources_assignment_filter([]) 105 set_sources_assignment_filter([])
102 sources = [ 106 sources = [
103 "audio_player_unittest.cc", 107 "audio_player_unittest.cc",
104 "chromoting_client_runtime_unittest.cc", 108 "chromoting_client_runtime_unittest.cc",
105 "client_telemetry_logger_unittest.cc", 109 "client_telemetry_logger_unittest.cc",
110 "desktop_viewport_unittest.cc",
106 "dual_buffer_frame_consumer_unittest.cc", 111 "dual_buffer_frame_consumer_unittest.cc",
107 "empty_cursor_filter_unittest.cc", 112 "empty_cursor_filter_unittest.cc",
108 "key_event_mapper_unittest.cc", 113 "key_event_mapper_unittest.cc",
109 "normalizing_input_filter_cros_unittest.cc", 114 "normalizing_input_filter_cros_unittest.cc",
110 "normalizing_input_filter_mac_unittest.cc", 115 "normalizing_input_filter_mac_unittest.cc",
111 "normalizing_input_filter_win_unittest.cc", 116 "normalizing_input_filter_win_unittest.cc",
112 "queued_task_poster_unittest.cc", 117 "queued_task_poster_unittest.cc",
113 "server_log_entry_client_unittest.cc", 118 "server_log_entry_client_unittest.cc",
114 "software_video_renderer_unittest.cc", 119 "software_video_renderer_unittest.cc",
115 "touch_input_scaler_unittest.cc", 120 "touch_input_scaler_unittest.cc",
116 ] 121 ]
117 set_sources_assignment_filter(sources_assignment_filter) 122 set_sources_assignment_filter(sources_assignment_filter)
118 123
119 configs += [ 124 configs += [
120 "//remoting/build/config:version", 125 "//remoting/build/config:version",
121 "//remoting/build/config:enable_webrtc_remoting_client", 126 "//remoting/build/config:enable_webrtc_remoting_client",
122 ] 127 ]
123 128
124 deps = [ 129 deps = [
125 ":client", 130 ":client",
126 "//remoting/proto", 131 "//remoting/proto",
127 "//testing/gmock", 132 "//testing/gmock",
128 "//testing/gtest", 133 "//testing/gtest",
129 "//third_party/webrtc/base:rtc_base_approved", 134 "//third_party/webrtc/base:rtc_base_approved",
130 ] 135 ]
131 } 136 }
OLDNEW
« no previous file with comments | « no previous file | remoting/client/desktop_viewport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698