| 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 source_set("client") { | 7 source_set("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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 # be compiled on all platforms. | 47 # be compiled on all platforms. |
| 48 set_sources_assignment_filter([]) | 48 set_sources_assignment_filter([]) |
| 49 sources = [ | 49 sources = [ |
| 50 "audio_player_unittest.cc", | 50 "audio_player_unittest.cc", |
| 51 "chromoting_client_runtime_unittest.cc", | 51 "chromoting_client_runtime_unittest.cc", |
| 52 "client_status_logger_unittest.cc", | 52 "client_status_logger_unittest.cc", |
| 53 "empty_cursor_filter_unittest.cc", | 53 "empty_cursor_filter_unittest.cc", |
| 54 "key_event_mapper_unittest.cc", | 54 "key_event_mapper_unittest.cc", |
| 55 "normalizing_input_filter_cros_unittest.cc", | 55 "normalizing_input_filter_cros_unittest.cc", |
| 56 "normalizing_input_filter_mac_unittest.cc", | 56 "normalizing_input_filter_mac_unittest.cc", |
| 57 "normalizing_input_filter_win_unittest.cc", |
| 57 "server_log_entry_client_unittest.cc", | 58 "server_log_entry_client_unittest.cc", |
| 58 "software_video_renderer_unittest.cc", | 59 "software_video_renderer_unittest.cc", |
| 59 "touch_input_scaler_unittest.cc", | 60 "touch_input_scaler_unittest.cc", |
| 60 ] | 61 ] |
| 61 set_sources_assignment_filter(sources_assignment_filter) | 62 set_sources_assignment_filter(sources_assignment_filter) |
| 62 | 63 |
| 63 configs += [ | 64 configs += [ |
| 64 "//remoting:version", | 65 "//remoting:version", |
| 65 "//remoting:enable_webrtc_remoting_client", | 66 "//remoting:enable_webrtc_remoting_client", |
| 66 ] | 67 ] |
| 67 | 68 |
| 68 deps = [ | 69 deps = [ |
| 69 ":client", | 70 ":client", |
| 70 "//remoting/proto", | 71 "//remoting/proto", |
| 71 "//testing/gmock", | 72 "//testing/gmock", |
| 72 "//testing/gtest", | 73 "//testing/gtest", |
| 73 "//third_party/webrtc", | 74 "//third_party/webrtc", |
| 74 ] | 75 ] |
| 75 } | 76 } |
| OLD | NEW |