| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "//remoting/signaling", | 79 "//remoting/signaling", |
| 80 "//third_party/webrtc/modules/desktop_capture", | 80 "//third_party/webrtc/modules/desktop_capture", |
| 81 "//ui/gfx", | 81 "//ui/gfx", |
| 82 ] | 82 ] |
| 83 | 83 |
| 84 deps = [ | 84 deps = [ |
| 85 "//google_apis", | 85 "//google_apis", |
| 86 "//skia", | 86 "//skia", |
| 87 "//testing/gmock", | 87 "//testing/gmock", |
| 88 "//testing/gtest", | 88 "//testing/gtest", |
| 89 "//third_party/libjingle", | 89 "//third_party/webrtc_overrides", |
| 90 ] | 90 ] |
| 91 } | 91 } |
| 92 | 92 |
| 93 executable("chromoting_test_driver") { | 93 executable("chromoting_test_driver") { |
| 94 testonly = true | 94 testonly = true |
| 95 | 95 |
| 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", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 ":ar_test_driver_common", | 229 ":ar_test_driver_common", |
| 230 ":test_support", | 230 ":test_support", |
| 231 "//base", | 231 "//base", |
| 232 "//net:test_support", | 232 "//net:test_support", |
| 233 "//testing/gmock", | 233 "//testing/gmock", |
| 234 "//testing/gtest", | 234 "//testing/gtest", |
| 235 "//third_party/libyuv", | 235 "//third_party/libyuv", |
| 236 "//third_party/webrtc/modules/desktop_capture", | 236 "//third_party/webrtc/modules/desktop_capture", |
| 237 ] | 237 ] |
| 238 } | 238 } |
| OLD | NEW |