| 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 = [ |
| 11 "audio_player.cc", | 11 "audio_player.cc", |
| 12 "audio_player.h", | 12 "audio_player.h", |
| 13 "chromoting_client.cc", | 13 "chromoting_client.cc", |
| 14 "chromoting_client.h", | 14 "chromoting_client.h", |
| 15 "chromoting_session.cc", | 15 "chromoting_session.cc", |
| 16 "chromoting_session.h", | 16 "chromoting_session.h", |
| 17 "client_context.cc", | 17 "client_context.cc", |
| 18 "client_context.h", | 18 "client_context.h", |
| 19 "client_telemetry_logger.cc", | 19 "client_telemetry_logger.cc", |
| 20 "client_telemetry_logger.h", | 20 "client_telemetry_logger.h", |
| 21 "client_user_interface.h", | 21 "client_user_interface.h", |
| 22 "connect_to_host_info.cc", | 22 "connect_to_host_info.cc", |
| 23 "connect_to_host_info.h", | 23 "connect_to_host_info.h", |
| 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", |
| 29 "direct_input_strategy.h", |
| 28 "dual_buffer_frame_consumer.cc", | 30 "dual_buffer_frame_consumer.cc", |
| 29 "dual_buffer_frame_consumer.h", | 31 "dual_buffer_frame_consumer.h", |
| 30 "empty_cursor_filter.cc", | 32 "empty_cursor_filter.cc", |
| 31 "empty_cursor_filter.h", | 33 "empty_cursor_filter.h", |
| 32 "gesture_interpreter.cc", | 34 "gesture_interpreter.cc", |
| 33 "gesture_interpreter.h", | 35 "gesture_interpreter.h", |
| 34 "host_experiment_sender.cc", | 36 "host_experiment_sender.cc", |
| 35 "host_experiment_sender.h", | 37 "host_experiment_sender.h", |
| 36 "key_event_mapper.cc", | 38 "key_event_mapper.cc", |
| 37 "key_event_mapper.h", | 39 "key_event_mapper.h", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 ] | 130 ] |
| 129 | 131 |
| 130 deps = [ | 132 deps = [ |
| 131 ":client", | 133 ":client", |
| 132 "//remoting/proto", | 134 "//remoting/proto", |
| 133 "//testing/gmock", | 135 "//testing/gmock", |
| 134 "//testing/gtest", | 136 "//testing/gtest", |
| 135 "//third_party/webrtc/base:rtc_base_approved", | 137 "//third_party/webrtc/base:rtc_base_approved", |
| 136 ] | 138 ] |
| 137 } | 139 } |
| OLD | NEW |