| 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 static_library("test_support") { | 7 static_library("test_support") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 libs = [] | 187 libs = [] |
| 188 | 188 |
| 189 sources = [ | 189 sources = [ |
| 190 "it2me_standalone_host_main.cc", | 190 "it2me_standalone_host_main.cc", |
| 191 ] | 191 ] |
| 192 | 192 |
| 193 deps = [ | 193 deps = [ |
| 194 ":it2me_standalone_host", | 194 ":it2me_standalone_host", |
| 195 ] | 195 ] |
| 196 | 196 |
| 197 if (is_win) { | |
| 198 deps += [ "//remoting/host/win:dpi_aware_exe_manifest" ] | |
| 199 } | |
| 200 | |
| 201 if (is_desktop_linux) { | 197 if (is_desktop_linux) { |
| 202 if (use_gtk3) { | 198 deps += [ "//build/config/linux/gtk" ] |
| 203 deps += [ "//build/config/linux/gtk3" ] | |
| 204 } else { | |
| 205 deps += [ "//build/config/linux/gtk2" ] | |
| 206 } | |
| 207 } | 199 } |
| 208 | 200 |
| 209 if (is_win) { | 201 if (is_win) { |
| 210 defines += [ "_ALT_NO_EXCEPTIONS" ] | 202 defines += [ "_ALT_NO_EXCEPTIONS" ] |
| 211 | 203 deps += [ "//remoting/host/win:dpi_aware_exe_manifest" ] |
| 212 libs += [ | 204 libs += [ |
| 213 "rpcrt4.lib", | 205 "rpcrt4.lib", |
| 214 "wtsapi32.lib", | 206 "wtsapi32.lib", |
| 215 ] | 207 ] |
| 216 } | 208 } |
| 217 } | 209 } |
| 218 } | 210 } |
| 219 | 211 |
| 220 source_set("unit_tests") { | 212 source_set("unit_tests") { |
| 221 testonly = true | 213 testonly = true |
| (...skipping 14 matching lines...) Expand all Loading... |
| 236 ":ar_test_driver_common", | 228 ":ar_test_driver_common", |
| 237 ":test_support", | 229 ":test_support", |
| 238 "//base", | 230 "//base", |
| 239 "//net:test_support", | 231 "//net:test_support", |
| 240 "//testing/gmock", | 232 "//testing/gmock", |
| 241 "//testing/gtest", | 233 "//testing/gtest", |
| 242 "//third_party/libyuv", | 234 "//third_party/libyuv", |
| 243 "//third_party/webrtc/modules/desktop_capture", | 235 "//third_party/webrtc/modules/desktop_capture", |
| 244 ] | 236 ] |
| 245 } | 237 } |
| OLD | NEW |