| 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 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/config:exe_and_shlib_deps", |
| 197 ] | 198 ] |
| 198 | 199 |
| 199 if (is_desktop_linux) { | 200 if (is_desktop_linux) { |
| 200 deps += [ "//build/config/linux/gtk" ] | 201 deps += [ "//build/config/linux/gtk" ] |
| 201 } | 202 } |
| 202 | 203 |
| 203 if (is_win) { | 204 if (is_win) { |
| 204 defines += [ "_ALT_NO_EXCEPTIONS" ] | 205 defines += [ "_ALT_NO_EXCEPTIONS" ] |
| 205 deps += [ "//remoting/host/win:dpi_aware_exe_manifest" ] | 206 deps += [ "//remoting/host/win:dpi_aware_exe_manifest" ] |
| 206 libs += [ | 207 libs += [ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 230 ":ar_test_driver_common", | 231 ":ar_test_driver_common", |
| 231 ":test_support", | 232 ":test_support", |
| 232 "//base", | 233 "//base", |
| 233 "//net:test_support", | 234 "//net:test_support", |
| 234 "//testing/gmock", | 235 "//testing/gmock", |
| 235 "//testing/gtest", | 236 "//testing/gtest", |
| 236 "//third_party/libyuv", | 237 "//third_party/libyuv", |
| 237 "//third_party/webrtc/modules/desktop_capture", | 238 "//third_party/webrtc/modules/desktop_capture", |
| 238 ] | 239 ] |
| 239 } | 240 } |
| OLD | NEW |