| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 testonly = true | 89 testonly = true |
| 90 | 90 |
| 91 sources = [ | 91 sources = [ |
| 92 "chromoting_test_driver.cc", | 92 "chromoting_test_driver.cc", |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 deps = [ | 95 deps = [ |
| 96 ":test_support", | 96 ":test_support", |
| 97 "//base/test:test_support", | 97 "//base/test:test_support", |
| 98 "//build/config/sanitizers:deps", | 98 "//build/config/sanitizers:deps", |
| 99 "//build/win:default_exe_manifest", |
| 99 "//testing/gtest", | 100 "//testing/gtest", |
| 100 ] | 101 ] |
| 101 } | 102 } |
| 102 | 103 |
| 103 source_set("ar_test_driver_common") { | 104 source_set("ar_test_driver_common") { |
| 104 testonly = true | 105 testonly = true |
| 105 | 106 |
| 106 sources = [ | 107 sources = [ |
| 107 "app_remoting_connected_client_fixture.cc", | 108 "app_remoting_connected_client_fixture.cc", |
| 108 "app_remoting_connected_client_fixture.h", | 109 "app_remoting_connected_client_fixture.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 127 | 128 |
| 128 sources = [ | 129 sources = [ |
| 129 "app_remoting_sample_test_driver_environment.cc", | 130 "app_remoting_sample_test_driver_environment.cc", |
| 130 "app_remoting_test_driver.cc", | 131 "app_remoting_test_driver.cc", |
| 131 ] | 132 ] |
| 132 | 133 |
| 133 deps = [ | 134 deps = [ |
| 134 ":ar_test_driver_common", | 135 ":ar_test_driver_common", |
| 135 "//base/test:test_support", | 136 "//base/test:test_support", |
| 136 "//build/config/sanitizers:deps", | 137 "//build/config/sanitizers:deps", |
| 138 "//build/win:default_exe_manifest", |
| 137 "//testing/gtest", | 139 "//testing/gtest", |
| 138 ] | 140 ] |
| 139 } | 141 } |
| 140 | 142 |
| 141 source_set("unit_tests") { | 143 source_set("unit_tests") { |
| 142 testonly = true | 144 testonly = true |
| 143 | 145 |
| 144 sources = [ | 146 sources = [ |
| 145 "access_token_fetcher_unittest.cc", | 147 "access_token_fetcher_unittest.cc", |
| 146 "app_remoting_report_issue_request_unittest.cc", | 148 "app_remoting_report_issue_request_unittest.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 157 ":ar_test_driver_common", | 159 ":ar_test_driver_common", |
| 158 ":test_support", | 160 ":test_support", |
| 159 "//base", | 161 "//base", |
| 160 "//net:test_support", | 162 "//net:test_support", |
| 161 "//testing/gmock", | 163 "//testing/gmock", |
| 162 "//testing/gtest", | 164 "//testing/gtest", |
| 163 "//third_party/libyuv", | 165 "//third_party/libyuv", |
| 164 "//third_party/webrtc/modules/desktop_capture", | 166 "//third_party/webrtc/modules/desktop_capture", |
| 165 ] | 167 ] |
| 166 } | 168 } |
| OLD | NEW |