| 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 source_set("test_support") { | 5 source_set("test_support") { |
| 6 testonly = true | 6 testonly = true |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "access_token_fetcher.cc", | 9 "access_token_fetcher.cc", |
| 10 "access_token_fetcher.h", | 10 "access_token_fetcher.h", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "mock_access_token_fetcher.cc", | 43 "mock_access_token_fetcher.cc", |
| 44 "mock_access_token_fetcher.h", | 44 "mock_access_token_fetcher.h", |
| 45 "refresh_token_store.cc", | 45 "refresh_token_store.cc", |
| 46 "refresh_token_store.h", | 46 "refresh_token_store.h", |
| 47 "remote_application_details.h", | 47 "remote_application_details.h", |
| 48 "remote_connection_observer.h", | 48 "remote_connection_observer.h", |
| 49 "remote_host_info.cc", | 49 "remote_host_info.cc", |
| 50 "remote_host_info.h", | 50 "remote_host_info.h", |
| 51 "remote_host_info_fetcher.cc", | 51 "remote_host_info_fetcher.cc", |
| 52 "remote_host_info_fetcher.h", | 52 "remote_host_info_fetcher.h", |
| 53 "rgb_value.cc", |
| 54 "rgb_value.h", |
| 53 "test_chromoting_client.cc", | 55 "test_chromoting_client.cc", |
| 54 "test_chromoting_client.h", | 56 "test_chromoting_client.h", |
| 55 "test_video_renderer.cc", | 57 "test_video_renderer.cc", |
| 56 "test_video_renderer.h", | 58 "test_video_renderer.h", |
| 57 ] | 59 ] |
| 58 | 60 |
| 59 public_deps = [ | 61 public_deps = [ |
| 60 "//base", | 62 "//base", |
| 61 "//net", | 63 "//net", |
| 62 "//remoting/base", | 64 "//remoting/base", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 ":test_support", | 156 ":test_support", |
| 155 ":ar_test_driver_common", | 157 ":ar_test_driver_common", |
| 156 "//base", | 158 "//base", |
| 157 "//net:test_support", | 159 "//net:test_support", |
| 158 "//testing/gmock", | 160 "//testing/gmock", |
| 159 "//testing/gtest", | 161 "//testing/gtest", |
| 160 "//third_party/libyuv", | 162 "//third_party/libyuv", |
| 161 "//third_party/webrtc/modules/desktop_capture", | 163 "//third_party/webrtc/modules/desktop_capture", |
| 162 ] | 164 ] |
| 163 } | 165 } |
| OLD | NEW |