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

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: 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
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 executable("dummy_host") {
joedow 2016/04/28 22:53:54 I don't think dummy_host is descriptive enough. I
Hzj_jie 2016/05/03 19:07:05 Emm.... Renamed to It2MeStandaloneHost
144 testonly = true
145
146 sources = [
147 "dummy_host.cc",
148 ]
149
150 deps = [
151 ":test_support",
152 "//remoting/host",
153 "//remoting/host:test_support",
154 "//remoting/protocol:test_support",
155 "//testing/gmock",
156 ]
157
158 if (is_desktop_linux) {
159 deps += [ "//build/config/linux/gtk2" ]
160 }
161 }
162
143 source_set("unit_tests") { 163 source_set("unit_tests") {
144 testonly = true 164 testonly = true
145 165
146 sources = [ 166 sources = [
147 "access_token_fetcher_unittest.cc", 167 "access_token_fetcher_unittest.cc",
148 "app_remoting_report_issue_request_unittest.cc", 168 "app_remoting_report_issue_request_unittest.cc",
149 "app_remoting_test_driver_environment_unittest.cc", 169 "app_remoting_test_driver_environment_unittest.cc",
150 "chromoting_test_driver_environment_unittest.cc", 170 "chromoting_test_driver_environment_unittest.cc",
151 "connection_time_observer_unittest.cc", 171 "connection_time_observer_unittest.cc",
152 "host_list_fetcher_unittest.cc", 172 "host_list_fetcher_unittest.cc",
153 "remote_host_info_fetcher_unittest.cc", 173 "remote_host_info_fetcher_unittest.cc",
154 "test_chromoting_client_unittest.cc", 174 "test_chromoting_client_unittest.cc",
155 "test_video_renderer_unittest.cc", 175 "test_video_renderer_unittest.cc",
156 ] 176 ]
157 177
158 deps = [ 178 deps = [
159 ":ar_test_driver_common", 179 ":ar_test_driver_common",
160 ":test_support", 180 ":test_support",
161 "//base", 181 "//base",
162 "//net:test_support", 182 "//net:test_support",
163 "//testing/gmock", 183 "//testing/gmock",
164 "//testing/gtest", 184 "//testing/gtest",
165 "//third_party/libyuv", 185 "//third_party/libyuv",
166 "//third_party/webrtc/modules/desktop_capture", 186 "//third_party/webrtc/modules/desktop_capture",
167 ] 187 ]
168 } 188 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698