OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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_enable.gni") | 5 import("//remoting/remoting_enable.gni") |
6 | 6 |
7 static_library("test_support") { | 7 static_library("test_support") { |
8 testonly = true | 8 testonly = true |
9 | 9 |
10 sources = [ | 10 sources = [ |
(...skipping 22 matching lines...) Expand all Loading... |
33 "fake_network_manager.cc", | 33 "fake_network_manager.cc", |
34 "fake_network_manager.h", | 34 "fake_network_manager.h", |
35 "fake_port_allocator.cc", | 35 "fake_port_allocator.cc", |
36 "fake_port_allocator.h", | 36 "fake_port_allocator.h", |
37 "fake_refresh_token_store.cc", | 37 "fake_refresh_token_store.cc", |
38 "fake_refresh_token_store.h", | 38 "fake_refresh_token_store.h", |
39 "fake_remote_host_info_fetcher.cc", | 39 "fake_remote_host_info_fetcher.cc", |
40 "fake_remote_host_info_fetcher.h", | 40 "fake_remote_host_info_fetcher.h", |
41 "fake_socket_factory.cc", | 41 "fake_socket_factory.cc", |
42 "fake_socket_factory.h", | 42 "fake_socket_factory.h", |
| 43 "frame_generator_util.cc", |
| 44 "frame_generator_util.h", |
43 "host_info.cc", | 45 "host_info.cc", |
44 "host_info.h", | 46 "host_info.h", |
45 "host_list_fetcher.cc", | 47 "host_list_fetcher.cc", |
46 "host_list_fetcher.h", | 48 "host_list_fetcher.h", |
47 "leaky_bucket.cc", | 49 "leaky_bucket.cc", |
48 "leaky_bucket.h", | 50 "leaky_bucket.h", |
49 "mock_access_token_fetcher.cc", | 51 "mock_access_token_fetcher.cc", |
50 "mock_access_token_fetcher.h", | 52 "mock_access_token_fetcher.h", |
51 "refresh_token_store.cc", | 53 "refresh_token_store.cc", |
52 "refresh_token_store.h", | 54 "refresh_token_store.h", |
53 "remote_application_details.h", | 55 "remote_application_details.h", |
54 "remote_connection_observer.h", | 56 "remote_connection_observer.h", |
55 "remote_host_info.cc", | 57 "remote_host_info.cc", |
56 "remote_host_info.h", | 58 "remote_host_info.h", |
57 "remote_host_info_fetcher.cc", | 59 "remote_host_info_fetcher.cc", |
58 "remote_host_info_fetcher.h", | 60 "remote_host_info_fetcher.h", |
59 "rgb_value.cc", | 61 "rgb_value.cc", |
60 "rgb_value.h", | 62 "rgb_value.h", |
| 63 "scroll_frame_generator.cc", |
| 64 "scroll_frame_generator.h", |
61 "test_chromoting_client.cc", | 65 "test_chromoting_client.cc", |
62 "test_chromoting_client.h", | 66 "test_chromoting_client.h", |
63 "test_video_renderer.cc", | 67 "test_video_renderer.cc", |
64 "test_video_renderer.h", | 68 "test_video_renderer.h", |
65 "video_frame_writer.cc", | 69 "video_frame_writer.cc", |
66 "video_frame_writer.h", | 70 "video_frame_writer.h", |
67 ] | 71 ] |
68 | 72 |
69 public_deps = [ | 73 public_deps = [ |
70 "//base", | 74 "//base", |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 ":ar_test_driver_common", | 220 ":ar_test_driver_common", |
217 ":test_support", | 221 ":test_support", |
218 "//base", | 222 "//base", |
219 "//net:test_support", | 223 "//net:test_support", |
220 "//testing/gmock", | 224 "//testing/gmock", |
221 "//testing/gtest", | 225 "//testing/gtest", |
222 "//third_party/libyuv", | 226 "//third_party/libyuv", |
223 "//third_party/webrtc/modules/desktop_capture", | 227 "//third_party/webrtc/modules/desktop_capture", |
224 ] | 228 ] |
225 } | 229 } |
OLD | NEW |