| 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 source_set("test_support") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 181 |
| 182 executable("it2me_standalone_host_main") { | 182 executable("it2me_standalone_host_main") { |
| 183 testonly = true | 183 testonly = true |
| 184 | 184 |
| 185 sources = [ | 185 sources = [ |
| 186 "it2me_standalone_host_main.cc", | 186 "it2me_standalone_host_main.cc", |
| 187 ] | 187 ] |
| 188 | 188 |
| 189 deps = [ | 189 deps = [ |
| 190 ":it2me_standalone_host", | 190 ":it2me_standalone_host", |
| 191 "//build/win:default_exe_manifest", |
| 191 ] | 192 ] |
| 192 | 193 |
| 193 if (is_desktop_linux) { | 194 if (is_desktop_linux) { |
| 194 deps += [ "//build/config/linux/gtk2" ] | 195 deps += [ "//build/config/linux/gtk2" ] |
| 195 } | 196 } |
| 196 } | 197 } |
| 197 } | 198 } |
| 198 | 199 |
| 199 source_set("unit_tests") { | 200 source_set("unit_tests") { |
| 200 testonly = true | 201 testonly = true |
| (...skipping 14 matching lines...) Expand all Loading... |
| 215 ":ar_test_driver_common", | 216 ":ar_test_driver_common", |
| 216 ":test_support", | 217 ":test_support", |
| 217 "//base", | 218 "//base", |
| 218 "//net:test_support", | 219 "//net:test_support", |
| 219 "//testing/gmock", | 220 "//testing/gmock", |
| 220 "//testing/gtest", | 221 "//testing/gtest", |
| 221 "//third_party/libyuv", | 222 "//third_party/libyuv", |
| 222 "//third_party/webrtc/modules/desktop_capture", | 223 "//third_party/webrtc/modules/desktop_capture", |
| 223 ] | 224 ] |
| 224 } | 225 } |
| OLD | NEW |