| 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 "//testing/gtest", | 83 "//testing/gtest", |
| 84 "//third_party/libjingle", | 84 "//third_party/libjingle", |
| 85 ] | 85 ] |
| 86 } | 86 } |
| 87 | 87 |
| 88 executable("chromoting_test_driver") { | 88 executable("chromoting_test_driver") { |
| 89 testonly = true | 89 testonly = true |
| 90 | 90 |
| 91 sources = [ | 91 sources = [ |
| 92 "chromoting_test_driver.cc", | 92 "chromoting_test_driver.cc", |
| 93 "chromoting_test_driver_tests.cc", |
| 94 "chromoting_test_fixture.cc", |
| 95 "chromoting_test_fixture.h", |
| 93 ] | 96 ] |
| 94 | 97 |
| 95 deps = [ | 98 deps = [ |
| 96 ":test_support", | 99 ":test_support", |
| 97 "//base/test:test_support", | 100 "//base/test:test_support", |
| 98 "//build/config/sanitizers:deps", | 101 "//build/config/sanitizers:deps", |
| 99 "//build/win:default_exe_manifest", | 102 "//build/win:default_exe_manifest", |
| 100 "//testing/gtest", | 103 "//testing/gtest", |
| 101 ] | 104 ] |
| 102 } | 105 } |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 ":ar_test_driver_common", | 162 ":ar_test_driver_common", |
| 160 ":test_support", | 163 ":test_support", |
| 161 "//base", | 164 "//base", |
| 162 "//net:test_support", | 165 "//net:test_support", |
| 163 "//testing/gmock", | 166 "//testing/gmock", |
| 164 "//testing/gtest", | 167 "//testing/gtest", |
| 165 "//third_party/libyuv", | 168 "//third_party/libyuv", |
| 166 "//third_party/webrtc/modules/desktop_capture", | 169 "//third_party/webrtc/modules/desktop_capture", |
| 167 ] | 170 ] |
| 168 } | 171 } |
| OLD | NEW |