| 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 import("//remoting/remoting_srcs.gni") | 5 import("//remoting/remoting_srcs.gni") |
| 6 | 6 |
| 7 static_library("client") { | 7 static_library("client") { |
| 8 # Disabled the source filters because there are _mac files that need to | 8 # Disabled the source filters because there are _mac files that need to |
| 9 # be compiled on all platforms. | 9 # be compiled on all platforms. |
| 10 set_sources_assignment_filter([]) | 10 set_sources_assignment_filter([]) |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 # Disabled the source filters because there are _mac files that need to | 79 # Disabled the source filters because there are _mac files that need to |
| 80 # be compiled on all platforms. | 80 # be compiled on all platforms. |
| 81 set_sources_assignment_filter([]) | 81 set_sources_assignment_filter([]) |
| 82 sources = [ | 82 sources = [ |
| 83 "audio_decode_scheduler_unittest.cc", | 83 "audio_decode_scheduler_unittest.cc", |
| 84 "audio_player_unittest.cc", | 84 "audio_player_unittest.cc", |
| 85 "chromoting_client_runtime_unittest.cc", | 85 "chromoting_client_runtime_unittest.cc", |
| 86 "client_status_logger_unittest.cc", | 86 "client_status_logger_unittest.cc", |
| 87 "client_telemetry_logger_unittest.cc", | 87 "client_telemetry_logger_unittest.cc", |
| 88 "dual_buffer_frame_consumer_unittest.cc", |
| 88 "empty_cursor_filter_unittest.cc", | 89 "empty_cursor_filter_unittest.cc", |
| 89 "key_event_mapper_unittest.cc", | 90 "key_event_mapper_unittest.cc", |
| 90 "normalizing_input_filter_cros_unittest.cc", | 91 "normalizing_input_filter_cros_unittest.cc", |
| 91 "normalizing_input_filter_mac_unittest.cc", | 92 "normalizing_input_filter_mac_unittest.cc", |
| 92 "normalizing_input_filter_win_unittest.cc", | 93 "normalizing_input_filter_win_unittest.cc", |
| 93 "server_log_entry_client_unittest.cc", | 94 "server_log_entry_client_unittest.cc", |
| 94 "software_video_renderer_unittest.cc", | 95 "software_video_renderer_unittest.cc", |
| 95 "touch_input_scaler_unittest.cc", | 96 "touch_input_scaler_unittest.cc", |
| 96 ] | 97 ] |
| 97 set_sources_assignment_filter(sources_assignment_filter) | 98 set_sources_assignment_filter(sources_assignment_filter) |
| 98 | 99 |
| 99 configs += [ | 100 configs += [ |
| 100 "//remoting:version", | 101 "//remoting:version", |
| 101 "//remoting:enable_webrtc_remoting_client", | 102 "//remoting:enable_webrtc_remoting_client", |
| 102 ] | 103 ] |
| 103 | 104 |
| 104 deps = [ | 105 deps = [ |
| 105 ":client", | 106 ":client", |
| 106 ":test_support", | 107 ":test_support", |
| 107 "//remoting/proto", | 108 "//remoting/proto", |
| 108 "//testing/gmock", | 109 "//testing/gmock", |
| 109 "//testing/gtest", | 110 "//testing/gtest", |
| 110 "//third_party/webrtc", | 111 "//third_party/webrtc", |
| 111 ] | 112 ] |
| 112 } | 113 } |
| OLD | NEW |