Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: remoting/test/BUILD.gn

Issue 1923573006: Implement a dummy host to do capturing and analysis only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolve review commnets Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/remoting_srcs.gypi ('k') | remoting/test/fake_connection_event_logger.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 133
134 deps = [ 134 deps = [
135 ":ar_test_driver_common", 135 ":ar_test_driver_common",
136 "//base/test:test_support", 136 "//base/test:test_support",
137 "//build/config/sanitizers:deps", 137 "//build/config/sanitizers:deps",
138 "//build/win:default_exe_manifest", 138 "//build/win:default_exe_manifest",
139 "//testing/gtest", 139 "//testing/gtest",
140 ] 140 ]
141 } 141 }
142 142
143 static_library("fake_connection_event_logger") {
144 testonly = true
145
146 sources = [
147 "fake_connection_event_logger.cc",
148 "fake_connection_event_logger.h",
149 ]
150
151 deps = [
152 "//remoting/host",
153 "//remoting/protocol:test_support",
154 ]
155 }
156
157 static_library("it2me_standalone_host") {
158 testonly = true
159
160 sources = [
161 "it2me_standalone_host.cc",
162 "it2me_standalone_host.h",
163 ]
164
165 deps = [
166 ":fake_connection_event_logger",
167 "//third_party/webrtc/modules/desktop_capture",
168 ]
169
170 public_deps = [
171 "//remoting/host:test_support",
172 "//testing/gmock",
173 ]
174 }
175
176 executable("it2me_standalone_host_main") {
177 testonly = true
178
179 sources = [
180 "it2me_standalone_host_main.cc",
181 ]
182
183 deps = [
184 ":it2me_standalone_host",
185 ]
186
187 if (is_desktop_linux) {
188 deps += [ "//build/config/linux/gtk2" ]
189 }
190 }
191
143 source_set("unit_tests") { 192 source_set("unit_tests") {
144 testonly = true 193 testonly = true
145 194
146 sources = [ 195 sources = [
147 "access_token_fetcher_unittest.cc", 196 "access_token_fetcher_unittest.cc",
148 "app_remoting_report_issue_request_unittest.cc", 197 "app_remoting_report_issue_request_unittest.cc",
149 "app_remoting_test_driver_environment_unittest.cc", 198 "app_remoting_test_driver_environment_unittest.cc",
150 "chromoting_test_driver_environment_unittest.cc", 199 "chromoting_test_driver_environment_unittest.cc",
151 "connection_time_observer_unittest.cc", 200 "connection_time_observer_unittest.cc",
152 "host_list_fetcher_unittest.cc", 201 "host_list_fetcher_unittest.cc",
153 "remote_host_info_fetcher_unittest.cc", 202 "remote_host_info_fetcher_unittest.cc",
154 "test_chromoting_client_unittest.cc", 203 "test_chromoting_client_unittest.cc",
155 "test_video_renderer_unittest.cc", 204 "test_video_renderer_unittest.cc",
156 ] 205 ]
157 206
158 deps = [ 207 deps = [
159 ":ar_test_driver_common", 208 ":ar_test_driver_common",
160 ":test_support", 209 ":test_support",
161 "//base", 210 "//base",
162 "//net:test_support", 211 "//net:test_support",
163 "//testing/gmock", 212 "//testing/gmock",
164 "//testing/gtest", 213 "//testing/gtest",
165 "//third_party/libyuv", 214 "//third_party/libyuv",
166 "//third_party/webrtc/modules/desktop_capture", 215 "//third_party/webrtc/modules/desktop_capture",
167 ] 216 ]
168 } 217 }
OLDNEW
« no previous file with comments | « remoting/remoting_srcs.gypi ('k') | remoting/test/fake_connection_event_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698