| 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 testonly = true | 187 testonly = true |
| 188 defines = [] | 188 defines = [] |
| 189 libs = [] | 189 libs = [] |
| 190 | 190 |
| 191 sources = [ | 191 sources = [ |
| 192 "it2me_standalone_host_main.cc", | 192 "it2me_standalone_host_main.cc", |
| 193 ] | 193 ] |
| 194 | 194 |
| 195 deps = [ | 195 deps = [ |
| 196 ":it2me_standalone_host", | 196 ":it2me_standalone_host", |
| 197 "//build/win:default_exe_manifest", | |
| 198 ] | 197 ] |
| 199 | 198 |
| 199 if (is_win) { |
| 200 deps += [ "//remoting/host/win:dpi_aware_exe_manifest" ] |
| 201 } |
| 202 |
| 200 if (is_desktop_linux) { | 203 if (is_desktop_linux) { |
| 201 if (use_gtk3) { | 204 if (use_gtk3) { |
| 202 deps += [ "//build/config/linux/gtk3" ] | 205 deps += [ "//build/config/linux/gtk3" ] |
| 203 } else { | 206 } else { |
| 204 deps += [ "//build/config/linux/gtk2" ] | 207 deps += [ "//build/config/linux/gtk2" ] |
| 205 } | 208 } |
| 206 } | 209 } |
| 207 | 210 |
| 208 if (is_win) { | 211 if (is_win) { |
| 209 defines += [ "_ALT_NO_EXCEPTIONS" ] | 212 defines += [ "_ALT_NO_EXCEPTIONS" ] |
| (...skipping 25 matching lines...) Expand all Loading... |
| 235 ":ar_test_driver_common", | 238 ":ar_test_driver_common", |
| 236 ":test_support", | 239 ":test_support", |
| 237 "//base", | 240 "//base", |
| 238 "//net:test_support", | 241 "//net:test_support", |
| 239 "//testing/gmock", | 242 "//testing/gmock", |
| 240 "//testing/gtest", | 243 "//testing/gtest", |
| 241 "//third_party/libyuv", | 244 "//third_party/libyuv", |
| 242 "//third_party/webrtc/modules/desktop_capture", | 245 "//third_party/webrtc/modules/desktop_capture", |
| 243 ] | 246 ] |
| 244 } | 247 } |
| OLD | NEW |