| 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_enable.gni") | 5 import("//remoting/remoting_enable.gni") |
| 6 | 6 |
| 7 source_set("test_support") { | 7 static_library("test_support") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| 11 "access_token_fetcher.cc", | 11 "access_token_fetcher.cc", |
| 12 "access_token_fetcher.h", | 12 "access_token_fetcher.h", |
| 13 "app_remoting_report_issue_request.cc", | 13 "app_remoting_report_issue_request.cc", |
| 14 "app_remoting_report_issue_request.h", | 14 "app_remoting_report_issue_request.h", |
| 15 "app_remoting_service_urls.cc", | 15 "app_remoting_service_urls.cc", |
| 16 "app_remoting_service_urls.h", | 16 "app_remoting_service_urls.h", |
| 17 "chromoting_test_driver_environment.cc", | 17 "chromoting_test_driver_environment.cc", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 | 99 |
| 100 deps = [ | 100 deps = [ |
| 101 ":test_support", | 101 ":test_support", |
| 102 "//base/test:test_support", | 102 "//base/test:test_support", |
| 103 "//build/config/sanitizers:deps", | 103 "//build/config/sanitizers:deps", |
| 104 "//build/win:default_exe_manifest", | 104 "//build/win:default_exe_manifest", |
| 105 "//testing/gtest", | 105 "//testing/gtest", |
| 106 ] | 106 ] |
| 107 } | 107 } |
| 108 | 108 |
| 109 source_set("ar_test_driver_common") { | 109 static_library("ar_test_driver_common") { |
| 110 testonly = true | 110 testonly = true |
| 111 | 111 |
| 112 sources = [ | 112 sources = [ |
| 113 "app_remoting_connected_client_fixture.cc", | 113 "app_remoting_connected_client_fixture.cc", |
| 114 "app_remoting_connected_client_fixture.h", | 114 "app_remoting_connected_client_fixture.h", |
| 115 "app_remoting_connection_helper.cc", | 115 "app_remoting_connection_helper.cc", |
| 116 "app_remoting_connection_helper.h", | 116 "app_remoting_connection_helper.h", |
| 117 "app_remoting_latency_test_fixture.cc", | 117 "app_remoting_latency_test_fixture.cc", |
| 118 "app_remoting_latency_test_fixture.h", | 118 "app_remoting_latency_test_fixture.h", |
| 119 "app_remoting_test_driver_environment.cc", | 119 "app_remoting_test_driver_environment.cc", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 ":ar_test_driver_common", | 216 ":ar_test_driver_common", |
| 217 ":test_support", | 217 ":test_support", |
| 218 "//base", | 218 "//base", |
| 219 "//net:test_support", | 219 "//net:test_support", |
| 220 "//testing/gmock", | 220 "//testing/gmock", |
| 221 "//testing/gtest", | 221 "//testing/gtest", |
| 222 "//third_party/libyuv", | 222 "//third_party/libyuv", |
| 223 "//third_party/webrtc/modules/desktop_capture", | 223 "//third_party/webrtc/modules/desktop_capture", |
| 224 ] | 224 ] |
| 225 } | 225 } |
| OLD | NEW |