| 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_options.gni") | 5 import("//remoting/remoting_options.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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 sources = [ | 96 sources = [ |
| 97 "chromoting_test_driver.cc", | 97 "chromoting_test_driver.cc", |
| 98 "chromoting_test_driver_tests.cc", | 98 "chromoting_test_driver_tests.cc", |
| 99 "chromoting_test_fixture.cc", | 99 "chromoting_test_fixture.cc", |
| 100 "chromoting_test_fixture.h", | 100 "chromoting_test_fixture.h", |
| 101 ] | 101 ] |
| 102 | 102 |
| 103 deps = [ | 103 deps = [ |
| 104 ":test_support", | 104 ":test_support", |
| 105 "//base/test:test_support", | 105 "//base/test:test_support", |
| 106 "//build/config/sanitizers:deps", | 106 "//build/config:exe_and_shlib_deps", |
| 107 "//build/win:default_exe_manifest", | 107 "//build/win:default_exe_manifest", |
| 108 "//testing/gtest", | 108 "//testing/gtest", |
| 109 ] | 109 ] |
| 110 } | 110 } |
| 111 | 111 |
| 112 static_library("ar_test_driver_common") { | 112 static_library("ar_test_driver_common") { |
| 113 testonly = true | 113 testonly = true |
| 114 | 114 |
| 115 sources = [ | 115 sources = [ |
| 116 "app_remoting_connected_client_fixture.cc", | 116 "app_remoting_connected_client_fixture.cc", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 135 testonly = true | 135 testonly = true |
| 136 | 136 |
| 137 sources = [ | 137 sources = [ |
| 138 "app_remoting_sample_test_driver_environment.cc", | 138 "app_remoting_sample_test_driver_environment.cc", |
| 139 "app_remoting_test_driver.cc", | 139 "app_remoting_test_driver.cc", |
| 140 ] | 140 ] |
| 141 | 141 |
| 142 deps = [ | 142 deps = [ |
| 143 ":ar_test_driver_common", | 143 ":ar_test_driver_common", |
| 144 "//base/test:test_support", | 144 "//base/test:test_support", |
| 145 "//build/config/sanitizers:deps", | 145 "//build/config:exe_and_shlib_deps", |
| 146 "//build/win:default_exe_manifest", | 146 "//build/win:default_exe_manifest", |
| 147 "//testing/gtest", | 147 "//testing/gtest", |
| 148 ] | 148 ] |
| 149 } | 149 } |
| 150 | 150 |
| 151 if (enable_remoting_host && !is_android && !is_chromeos) { | 151 if (enable_remoting_host && !is_android && !is_chromeos) { |
| 152 static_library("fake_connection_event_logger") { | 152 static_library("fake_connection_event_logger") { |
| 153 testonly = true | 153 testonly = true |
| 154 | 154 |
| 155 sources = [ | 155 sources = [ |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 ":ar_test_driver_common", | 230 ":ar_test_driver_common", |
| 231 ":test_support", | 231 ":test_support", |
| 232 "//base", | 232 "//base", |
| 233 "//net:test_support", | 233 "//net:test_support", |
| 234 "//testing/gmock", | 234 "//testing/gmock", |
| 235 "//testing/gtest", | 235 "//testing/gtest", |
| 236 "//third_party/libyuv", | 236 "//third_party/libyuv", |
| 237 "//third_party/webrtc/modules/desktop_capture", | 237 "//third_party/webrtc/modules/desktop_capture", |
| 238 ] | 238 ] |
| 239 } | 239 } |
| OLD | NEW |