| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 executable("chromoting_test_driver") { | 83 executable("chromoting_test_driver") { |
| 84 testonly = true | 84 testonly = true |
| 85 | 85 |
| 86 sources = [ | 86 sources = [ |
| 87 "chromoting_test_driver.cc", | 87 "chromoting_test_driver.cc", |
| 88 ] | 88 ] |
| 89 | 89 |
| 90 deps = [ | 90 deps = [ |
| 91 ":test_support", | 91 ":test_support", |
| 92 "//base/test:test_support", | 92 "//base/test:test_support", |
| 93 "//build/config/sanitizers:deps", |
| 93 "//testing/gtest", | 94 "//testing/gtest", |
| 94 ] | 95 ] |
| 95 } | 96 } |
| 96 | 97 |
| 97 source_set("ar_test_driver_common") { | 98 source_set("ar_test_driver_common") { |
| 98 testonly = true | 99 testonly = true |
| 99 | 100 |
| 100 sources = [ | 101 sources = [ |
| 101 "app_remoting_connected_client_fixture.cc", | 102 "app_remoting_connected_client_fixture.cc", |
| 102 "app_remoting_connected_client_fixture.h", | 103 "app_remoting_connected_client_fixture.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 120 testonly = true | 121 testonly = true |
| 121 | 122 |
| 122 sources = [ | 123 sources = [ |
| 123 "app_remoting_sample_test_driver_environment.cc", | 124 "app_remoting_sample_test_driver_environment.cc", |
| 124 "app_remoting_test_driver.cc", | 125 "app_remoting_test_driver.cc", |
| 125 ] | 126 ] |
| 126 | 127 |
| 127 deps = [ | 128 deps = [ |
| 128 ":ar_test_driver_common", | 129 ":ar_test_driver_common", |
| 129 "//base/test:test_support", | 130 "//base/test:test_support", |
| 131 "//build/config/sanitizers:deps", |
| 130 "//testing/gtest", | 132 "//testing/gtest", |
| 131 ] | 133 ] |
| 132 } | 134 } |
| 133 | 135 |
| 134 source_set("unit_tests") { | 136 source_set("unit_tests") { |
| 135 testonly = true | 137 testonly = true |
| 136 | 138 |
| 137 sources = [ | 139 sources = [ |
| 138 "access_token_fetcher_unittest.cc", | 140 "access_token_fetcher_unittest.cc", |
| 139 "app_remoting_report_issue_request_unittest.cc", | 141 "app_remoting_report_issue_request_unittest.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 150 ":test_support", | 152 ":test_support", |
| 151 ":ar_test_driver_common", | 153 ":ar_test_driver_common", |
| 152 "//base", | 154 "//base", |
| 153 "//net:test_support", | 155 "//net:test_support", |
| 154 "//testing/gmock", | 156 "//testing/gmock", |
| 155 "//testing/gtest", | 157 "//testing/gtest", |
| 156 "//third_party/libyuv", | 158 "//third_party/libyuv", |
| 157 "//third_party/webrtc/modules/desktop_capture", | 159 "//third_party/webrtc/modules/desktop_capture", |
| 158 ] | 160 ] |
| 159 } | 161 } |
| OLD | NEW |