| 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_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", |
| 49 "simple_matrix.cc", |
| 50 "simple_matrix.h", |
| 47 "software_video_renderer.cc", | 51 "software_video_renderer.cc", |
| 48 "software_video_renderer.h", | 52 "software_video_renderer.h", |
| 49 "touch_input_scaler.cc", | 53 "touch_input_scaler.cc", |
| 50 "touch_input_scaler.h", | 54 "touch_input_scaler.h", |
| 55 "viewport_geometry.cc", |
| 56 "viewport_geometry.h", |
| 51 ] | 57 ] |
| 52 set_sources_assignment_filter(sources_assignment_filter) | 58 set_sources_assignment_filter(sources_assignment_filter) |
| 53 | 59 |
| 54 configs += [ | 60 configs += [ |
| 55 "//build/config/compiler:wexit_time_destructors", | 61 "//build/config/compiler:wexit_time_destructors", |
| 56 "//remoting/build/config:version", | 62 "//remoting/build/config:version", |
| 57 "//remoting/build/config:enable_webrtc_remoting_client", | 63 "//remoting/build/config:enable_webrtc_remoting_client", |
| 58 ] | 64 ] |
| 59 | 65 |
| 60 deps = [ | 66 deps = [ |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 source_set("unit_tests") { | 102 source_set("unit_tests") { |
| 97 testonly = true | 103 testonly = true |
| 98 | 104 |
| 99 # Disabled the source filters because there are _mac files that need to | 105 # Disabled the source filters because there are _mac files that need to |
| 100 # be compiled on all platforms. | 106 # be compiled on all platforms. |
| 101 set_sources_assignment_filter([]) | 107 set_sources_assignment_filter([]) |
| 102 sources = [ | 108 sources = [ |
| 103 "audio_player_unittest.cc", | 109 "audio_player_unittest.cc", |
| 104 "chromoting_client_runtime_unittest.cc", | 110 "chromoting_client_runtime_unittest.cc", |
| 105 "client_telemetry_logger_unittest.cc", | 111 "client_telemetry_logger_unittest.cc", |
| 112 "desktop_viewport_unittest.cc", |
| 106 "dual_buffer_frame_consumer_unittest.cc", | 113 "dual_buffer_frame_consumer_unittest.cc", |
| 107 "empty_cursor_filter_unittest.cc", | 114 "empty_cursor_filter_unittest.cc", |
| 108 "key_event_mapper_unittest.cc", | 115 "key_event_mapper_unittest.cc", |
| 109 "normalizing_input_filter_cros_unittest.cc", | 116 "normalizing_input_filter_cros_unittest.cc", |
| 110 "normalizing_input_filter_mac_unittest.cc", | 117 "normalizing_input_filter_mac_unittest.cc", |
| 111 "normalizing_input_filter_win_unittest.cc", | 118 "normalizing_input_filter_win_unittest.cc", |
| 112 "queued_task_poster_unittest.cc", | 119 "queued_task_poster_unittest.cc", |
| 113 "server_log_entry_client_unittest.cc", | 120 "server_log_entry_client_unittest.cc", |
| 114 "software_video_renderer_unittest.cc", | 121 "software_video_renderer_unittest.cc", |
| 115 "touch_input_scaler_unittest.cc", | 122 "touch_input_scaler_unittest.cc", |
| 116 ] | 123 ] |
| 117 set_sources_assignment_filter(sources_assignment_filter) | 124 set_sources_assignment_filter(sources_assignment_filter) |
| 118 | 125 |
| 119 configs += [ | 126 configs += [ |
| 120 "//remoting/build/config:version", | 127 "//remoting/build/config:version", |
| 121 "//remoting/build/config:enable_webrtc_remoting_client", | 128 "//remoting/build/config:enable_webrtc_remoting_client", |
| 122 ] | 129 ] |
| 123 | 130 |
| 124 deps = [ | 131 deps = [ |
| 125 ":client", | 132 ":client", |
| 126 "//remoting/proto", | 133 "//remoting/proto", |
| 127 "//testing/gmock", | 134 "//testing/gmock", |
| 128 "//testing/gtest", | 135 "//testing/gtest", |
| 129 "//third_party/webrtc/base:rtc_base_approved", | 136 "//third_party/webrtc/base:rtc_base_approved", |
| 130 ] | 137 ] |
| 131 } | 138 } |
| OLD | NEW |