| 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", | |
| 45 "host_info.cc", | 43 "host_info.cc", |
| 46 "host_info.h", | 44 "host_info.h", |
| 47 "host_list_fetcher.cc", | 45 "host_list_fetcher.cc", |
| 48 "host_list_fetcher.h", | 46 "host_list_fetcher.h", |
| 49 "leaky_bucket.cc", | 47 "leaky_bucket.cc", |
| 50 "leaky_bucket.h", | 48 "leaky_bucket.h", |
| 51 "mock_access_token_fetcher.cc", | 49 "mock_access_token_fetcher.cc", |
| 52 "mock_access_token_fetcher.h", | 50 "mock_access_token_fetcher.h", |
| 53 "refresh_token_store.cc", | 51 "refresh_token_store.cc", |
| 54 "refresh_token_store.h", | 52 "refresh_token_store.h", |
| 55 "remote_application_details.h", | 53 "remote_application_details.h", |
| 56 "remote_connection_observer.h", | 54 "remote_connection_observer.h", |
| 57 "remote_host_info.cc", | 55 "remote_host_info.cc", |
| 58 "remote_host_info.h", | 56 "remote_host_info.h", |
| 59 "remote_host_info_fetcher.cc", | 57 "remote_host_info_fetcher.cc", |
| 60 "remote_host_info_fetcher.h", | 58 "remote_host_info_fetcher.h", |
| 61 "rgb_value.cc", | 59 "rgb_value.cc", |
| 62 "rgb_value.h", | 60 "rgb_value.h", |
| 63 "scroll_frame_generator.cc", | |
| 64 "scroll_frame_generator.h", | |
| 65 "test_chromoting_client.cc", | 61 "test_chromoting_client.cc", |
| 66 "test_chromoting_client.h", | 62 "test_chromoting_client.h", |
| 67 "test_video_renderer.cc", | 63 "test_video_renderer.cc", |
| 68 "test_video_renderer.h", | 64 "test_video_renderer.h", |
| 69 "video_frame_writer.cc", | 65 "video_frame_writer.cc", |
| 70 "video_frame_writer.h", | 66 "video_frame_writer.h", |
| 71 ] | 67 ] |
| 72 | 68 |
| 73 public_deps = [ | 69 public_deps = [ |
| 74 "//base", | 70 "//base", |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 ":ar_test_driver_common", | 216 ":ar_test_driver_common", |
| 221 ":test_support", | 217 ":test_support", |
| 222 "//base", | 218 "//base", |
| 223 "//net:test_support", | 219 "//net:test_support", |
| 224 "//testing/gmock", | 220 "//testing/gmock", |
| 225 "//testing/gtest", | 221 "//testing/gtest", |
| 226 "//third_party/libyuv", | 222 "//third_party/libyuv", |
| 227 "//third_party/webrtc/modules/desktop_capture", | 223 "//third_party/webrtc/modules/desktop_capture", |
| 228 ] | 224 ] |
| 229 } | 225 } |
| OLD | NEW |