| 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", | |
| 27 "desktop_viewport.h", | |
| 28 "direct_input_strategy.cc", | |
| 29 "direct_input_strategy.h", | |
| 30 "dual_buffer_frame_consumer.cc", | 26 "dual_buffer_frame_consumer.cc", |
| 31 "dual_buffer_frame_consumer.h", | 27 "dual_buffer_frame_consumer.h", |
| 32 "empty_cursor_filter.cc", | 28 "empty_cursor_filter.cc", |
| 33 "empty_cursor_filter.h", | 29 "empty_cursor_filter.h", |
| 34 "fling_animation.cc", | |
| 35 "fling_animation.h", | |
| 36 "fling_tracker.cc", | |
| 37 "fling_tracker.h", | |
| 38 "gesture_interpreter.cc", | |
| 39 "gesture_interpreter.h", | |
| 40 "host_experiment_sender.cc", | 30 "host_experiment_sender.cc", |
| 41 "host_experiment_sender.h", | 31 "host_experiment_sender.h", |
| 42 "key_event_mapper.cc", | 32 "key_event_mapper.cc", |
| 43 "key_event_mapper.h", | 33 "key_event_mapper.h", |
| 44 "native_device_keymap.cc", | 34 "native_device_keymap.cc", |
| 45 "native_device_keymap.h", | 35 "native_device_keymap.h", |
| 46 "normalizing_input_filter_cros.cc", | 36 "normalizing_input_filter_cros.cc", |
| 47 "normalizing_input_filter_cros.h", | 37 "normalizing_input_filter_cros.h", |
| 48 "normalizing_input_filter_mac.cc", | 38 "normalizing_input_filter_mac.cc", |
| 49 "normalizing_input_filter_mac.h", | 39 "normalizing_input_filter_mac.h", |
| 50 "normalizing_input_filter_win.cc", | 40 "normalizing_input_filter_win.cc", |
| 51 "normalizing_input_filter_win.h", | 41 "normalizing_input_filter_win.h", |
| 52 "queued_task_poster.cc", | 42 "queued_task_poster.cc", |
| 53 "queued_task_poster.h", | 43 "queued_task_poster.h", |
| 54 "server_log_entry_client.cc", | 44 "server_log_entry_client.cc", |
| 55 "server_log_entry_client.h", | 45 "server_log_entry_client.h", |
| 56 "software_video_renderer.cc", | 46 "software_video_renderer.cc", |
| 57 "software_video_renderer.h", | 47 "software_video_renderer.h", |
| 58 "touch_input_scaler.cc", | 48 "touch_input_scaler.cc", |
| 59 "touch_input_scaler.h", | 49 "touch_input_scaler.h", |
| 60 "view_matrix.cc", | |
| 61 "view_matrix.h", | |
| 62 ] | 50 ] |
| 63 set_sources_assignment_filter(sources_assignment_filter) | 51 set_sources_assignment_filter(sources_assignment_filter) |
| 64 | 52 |
| 65 configs += [ | 53 configs += [ |
| 66 "//build/config/compiler:wexit_time_destructors", | 54 "//build/config/compiler:wexit_time_destructors", |
| 67 "//remoting/build/config:version", | 55 "//remoting/build/config:version", |
| 68 "//remoting/build/config:enable_webrtc_remoting_client", | 56 "//remoting/build/config:enable_webrtc_remoting_client", |
| 69 ] | 57 ] |
| 70 | 58 |
| 71 deps = [ | 59 deps = [ |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 source_set("unit_tests") { | 99 source_set("unit_tests") { |
| 112 testonly = true | 100 testonly = true |
| 113 | 101 |
| 114 # Disabled the source filters because there are _mac files that need to | 102 # Disabled the source filters because there are _mac files that need to |
| 115 # be compiled on all platforms. | 103 # be compiled on all platforms. |
| 116 set_sources_assignment_filter([]) | 104 set_sources_assignment_filter([]) |
| 117 sources = [ | 105 sources = [ |
| 118 "audio_player_unittest.cc", | 106 "audio_player_unittest.cc", |
| 119 "chromoting_client_runtime_unittest.cc", | 107 "chromoting_client_runtime_unittest.cc", |
| 120 "client_telemetry_logger_unittest.cc", | 108 "client_telemetry_logger_unittest.cc", |
| 121 "desktop_viewport_unittest.cc", | |
| 122 "dual_buffer_frame_consumer_unittest.cc", | 109 "dual_buffer_frame_consumer_unittest.cc", |
| 123 "empty_cursor_filter_unittest.cc", | 110 "empty_cursor_filter_unittest.cc", |
| 124 "fling_animation_unittest.cc", | |
| 125 "fling_animation_unittest.h", | |
| 126 "key_event_mapper_unittest.cc", | 111 "key_event_mapper_unittest.cc", |
| 127 "normalizing_input_filter_cros_unittest.cc", | 112 "normalizing_input_filter_cros_unittest.cc", |
| 128 "normalizing_input_filter_mac_unittest.cc", | 113 "normalizing_input_filter_mac_unittest.cc", |
| 129 "normalizing_input_filter_win_unittest.cc", | 114 "normalizing_input_filter_win_unittest.cc", |
| 130 "queued_task_poster_unittest.cc", | 115 "queued_task_poster_unittest.cc", |
| 131 "server_log_entry_client_unittest.cc", | 116 "server_log_entry_client_unittest.cc", |
| 132 "software_video_renderer_unittest.cc", | 117 "software_video_renderer_unittest.cc", |
| 133 "touch_input_scaler_unittest.cc", | 118 "touch_input_scaler_unittest.cc", |
| 134 ] | 119 ] |
| 135 set_sources_assignment_filter(sources_assignment_filter) | 120 set_sources_assignment_filter(sources_assignment_filter) |
| 136 | 121 |
| 137 configs += [ | 122 configs += [ |
| 138 "//remoting/build/config:version", | 123 "//remoting/build/config:version", |
| 139 "//remoting/build/config:enable_webrtc_remoting_client", | 124 "//remoting/build/config:enable_webrtc_remoting_client", |
| 140 ] | 125 ] |
| 141 | 126 |
| 142 deps = [ | 127 deps = [ |
| 143 ":client", | 128 ":client", |
| 144 "//remoting/proto", | 129 "//remoting/proto", |
| 145 "//testing/gmock", | 130 "//testing/gmock", |
| 146 "//testing/gtest", | 131 "//testing/gtest", |
| 147 "//third_party/webrtc/base:rtc_base_approved", | 132 "//third_party/webrtc/base:rtc_base_approved", |
| 148 ] | 133 ] |
| 149 } | 134 } |
| OLD | NEW |