| OLD | NEW |
| 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 = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "cursor_shape_stub_proxy.cc", | 24 "cursor_shape_stub_proxy.cc", |
| 25 "cursor_shape_stub_proxy.h", | 25 "cursor_shape_stub_proxy.h", |
| 26 "desktop_viewport.cc", | 26 "desktop_viewport.cc", |
| 27 "desktop_viewport.h", | 27 "desktop_viewport.h", |
| 28 "direct_input_strategy.cc", | 28 "direct_input_strategy.cc", |
| 29 "direct_input_strategy.h", | 29 "direct_input_strategy.h", |
| 30 "dual_buffer_frame_consumer.cc", | 30 "dual_buffer_frame_consumer.cc", |
| 31 "dual_buffer_frame_consumer.h", | 31 "dual_buffer_frame_consumer.h", |
| 32 "empty_cursor_filter.cc", | 32 "empty_cursor_filter.cc", |
| 33 "empty_cursor_filter.h", | 33 "empty_cursor_filter.h", |
| 34 "fling_animation.cc", |
| 35 "fling_animation.h", |
| 36 "fling_tracker.cc", |
| 37 "fling_tracker.h", |
| 34 "gesture_interpreter.cc", | 38 "gesture_interpreter.cc", |
| 35 "gesture_interpreter.h", | 39 "gesture_interpreter.h", |
| 36 "host_experiment_sender.cc", | 40 "host_experiment_sender.cc", |
| 37 "host_experiment_sender.h", | 41 "host_experiment_sender.h", |
| 38 "key_event_mapper.cc", | 42 "key_event_mapper.cc", |
| 39 "key_event_mapper.h", | 43 "key_event_mapper.h", |
| 40 "native_device_keymap.cc", | 44 "native_device_keymap.cc", |
| 41 "native_device_keymap.h", | 45 "native_device_keymap.h", |
| 42 "normalizing_input_filter_cros.cc", | 46 "normalizing_input_filter_cros.cc", |
| 43 "normalizing_input_filter_cros.h", | 47 "normalizing_input_filter_cros.h", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 # Disabled the source filters because there are _mac files that need to | 110 # Disabled the source filters because there are _mac files that need to |
| 107 # be compiled on all platforms. | 111 # be compiled on all platforms. |
| 108 set_sources_assignment_filter([]) | 112 set_sources_assignment_filter([]) |
| 109 sources = [ | 113 sources = [ |
| 110 "audio_player_unittest.cc", | 114 "audio_player_unittest.cc", |
| 111 "chromoting_client_runtime_unittest.cc", | 115 "chromoting_client_runtime_unittest.cc", |
| 112 "client_telemetry_logger_unittest.cc", | 116 "client_telemetry_logger_unittest.cc", |
| 113 "desktop_viewport_unittest.cc", | 117 "desktop_viewport_unittest.cc", |
| 114 "dual_buffer_frame_consumer_unittest.cc", | 118 "dual_buffer_frame_consumer_unittest.cc", |
| 115 "empty_cursor_filter_unittest.cc", | 119 "empty_cursor_filter_unittest.cc", |
| 120 "fling_animation_unittest.cc", |
| 121 "fling_animation_unittest.h", |
| 116 "key_event_mapper_unittest.cc", | 122 "key_event_mapper_unittest.cc", |
| 117 "normalizing_input_filter_cros_unittest.cc", | 123 "normalizing_input_filter_cros_unittest.cc", |
| 118 "normalizing_input_filter_mac_unittest.cc", | 124 "normalizing_input_filter_mac_unittest.cc", |
| 119 "normalizing_input_filter_win_unittest.cc", | 125 "normalizing_input_filter_win_unittest.cc", |
| 120 "queued_task_poster_unittest.cc", | 126 "queued_task_poster_unittest.cc", |
| 121 "server_log_entry_client_unittest.cc", | 127 "server_log_entry_client_unittest.cc", |
| 122 "software_video_renderer_unittest.cc", | 128 "software_video_renderer_unittest.cc", |
| 123 "touch_input_scaler_unittest.cc", | 129 "touch_input_scaler_unittest.cc", |
| 124 ] | 130 ] |
| 125 set_sources_assignment_filter(sources_assignment_filter) | 131 set_sources_assignment_filter(sources_assignment_filter) |
| 126 | 132 |
| 127 configs += [ | 133 configs += [ |
| 128 "//remoting/build/config:version", | 134 "//remoting/build/config:version", |
| 129 "//remoting/build/config:enable_webrtc_remoting_client", | 135 "//remoting/build/config:enable_webrtc_remoting_client", |
| 130 ] | 136 ] |
| 131 | 137 |
| 132 deps = [ | 138 deps = [ |
| 133 ":client", | 139 ":client", |
| 134 "//remoting/proto", | 140 "//remoting/proto", |
| 135 "//testing/gmock", | 141 "//testing/gmock", |
| 136 "//testing/gtest", | 142 "//testing/gtest", |
| 137 "//third_party/webrtc/base:rtc_base_approved", | 143 "//third_party/webrtc/base:rtc_base_approved", |
| 138 ] | 144 ] |
| 139 } | 145 } |
| OLD | NEW |