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 26 matching lines...) Expand all Loading... |
37 "mock_access_token_fetcher.cc", | 37 "mock_access_token_fetcher.cc", |
38 "mock_access_token_fetcher.h", | 38 "mock_access_token_fetcher.h", |
39 "refresh_token_store.cc", | 39 "refresh_token_store.cc", |
40 "refresh_token_store.h", | 40 "refresh_token_store.h", |
41 "remote_application_details.h", | 41 "remote_application_details.h", |
42 "remote_connection_observer.h", | 42 "remote_connection_observer.h", |
43 "remote_host_info.cc", | 43 "remote_host_info.cc", |
44 "remote_host_info.h", | 44 "remote_host_info.h", |
45 "remote_host_info_fetcher.cc", | 45 "remote_host_info_fetcher.cc", |
46 "remote_host_info_fetcher.h", | 46 "remote_host_info_fetcher.h", |
| 47 "rgb_value.cc", |
| 48 "rgb_value.h", |
47 "test_chromoting_client.cc", | 49 "test_chromoting_client.cc", |
48 "test_chromoting_client.h", | 50 "test_chromoting_client.h", |
49 "test_video_renderer.cc", | 51 "test_video_renderer.cc", |
50 "test_video_renderer.h", | 52 "test_video_renderer.h", |
51 ] | 53 ] |
52 | 54 |
53 public_deps = [ | 55 public_deps = [ |
54 "//base", | 56 "//base", |
55 "//net", | 57 "//net", |
56 "//remoting/base", | 58 "//remoting/base", |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 ":test_support", | 149 ":test_support", |
148 ":ar_test_driver_common", | 150 ":ar_test_driver_common", |
149 "//base", | 151 "//base", |
150 "//net:test_support", | 152 "//net:test_support", |
151 "//testing/gmock", | 153 "//testing/gmock", |
152 "//testing/gtest", | 154 "//testing/gtest", |
153 "//third_party/libyuv", | 155 "//third_party/libyuv", |
154 "//third_party/webrtc/modules/desktop_capture", | 156 "//third_party/webrtc/modules/desktop_capture", |
155 ] | 157 ] |
156 } | 158 } |
OLD | NEW |