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 sources = rebase_path(remoting_srcs_gypi_values.remoting_client_sources, | 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_client_sources, |
9 ".", | 9 ".", |
10 "//remoting") | 10 "//remoting") |
(...skipping 11 matching lines...) Expand all Loading... |
22 "//third_party/webrtc/modules/desktop_capture", | 22 "//third_party/webrtc/modules/desktop_capture", |
23 ] | 23 ] |
24 } | 24 } |
25 | 25 |
26 source_set("unit_tests") { | 26 source_set("unit_tests") { |
27 testonly = true | 27 testonly = true |
28 | 28 |
29 sources = [ | 29 sources = [ |
30 "audio_player_unittest.cc", | 30 "audio_player_unittest.cc", |
31 "client_status_logger_unittest.cc", | 31 "client_status_logger_unittest.cc", |
| 32 "empty_cursor_filter_unittest.cc", |
32 "key_event_mapper_unittest.cc", | 33 "key_event_mapper_unittest.cc", |
| 34 "normalizing_input_filter_cros_unittest.cc", |
| 35 "normalizing_input_filter_mac_unittest.cc", |
33 "server_log_entry_client_unittest.cc", | 36 "server_log_entry_client_unittest.cc", |
| 37 "touch_input_scaler_unittest.cc", |
34 ] | 38 ] |
35 | 39 |
36 configs += [ "//remoting:version" ] | 40 configs += [ "//remoting:version" ] |
37 | 41 |
38 deps = [ | 42 deps = [ |
39 ":client", | 43 ":client", |
40 "//remoting/proto", | 44 "//remoting/proto", |
41 "//testing/gmock", | 45 "//testing/gmock", |
42 "//testing/gtest", | 46 "//testing/gtest", |
43 "//third_party/webrtc", | 47 "//third_party/webrtc", |
44 ] | 48 ] |
45 } | 49 } |
OLD | NEW |