| 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 28 matching lines...) Expand all Loading... |
| 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", | 43 "frame_generator_util.cc", |
| 44 "frame_generator_util.h", | 44 "frame_generator_util.h", |
| 45 "host_info.cc", | 45 "host_info.cc", |
| 46 "host_info.h", | 46 "host_info.h", |
| 47 "host_list_fetcher.cc", | 47 "host_list_fetcher.cc", |
| 48 "host_list_fetcher.h", | 48 "host_list_fetcher.h", |
| 49 "leaky_bucket.cc", | |
| 50 "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", |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 ":ar_test_driver_common", | 236 ":ar_test_driver_common", |
| 239 ":test_support", | 237 ":test_support", |
| 240 "//base", | 238 "//base", |
| 241 "//net:test_support", | 239 "//net:test_support", |
| 242 "//testing/gmock", | 240 "//testing/gmock", |
| 243 "//testing/gtest", | 241 "//testing/gtest", |
| 244 "//third_party/libyuv", | 242 "//third_party/libyuv", |
| 245 "//third_party/webrtc/modules/desktop_capture", | 243 "//third_party/webrtc/modules/desktop_capture", |
| 246 ] | 244 ] |
| 247 } | 245 } |
| OLD | NEW |