| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "//build/win:default_exe_manifest", | 195 "//build/win:default_exe_manifest", |
| 196 ] | 196 ] |
| 197 | 197 |
| 198 if (is_desktop_linux) { | 198 if (is_desktop_linux) { |
| 199 deps += [ "//build/config/linux/gtk2" ] | 199 if (use_gtk3) { |
| 200 deps += [ "//build/config/linux/gtk3" ] |
| 201 } else { |
| 202 deps += [ "//build/config/linux/gtk2" ] |
| 203 } |
| 200 } | 204 } |
| 201 } | 205 } |
| 202 } | 206 } |
| 203 | 207 |
| 204 source_set("unit_tests") { | 208 source_set("unit_tests") { |
| 205 testonly = true | 209 testonly = true |
| 206 | 210 |
| 207 sources = [ | 211 sources = [ |
| 208 "access_token_fetcher_unittest.cc", | 212 "access_token_fetcher_unittest.cc", |
| 209 "app_remoting_report_issue_request_unittest.cc", | 213 "app_remoting_report_issue_request_unittest.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 220 ":ar_test_driver_common", | 224 ":ar_test_driver_common", |
| 221 ":test_support", | 225 ":test_support", |
| 222 "//base", | 226 "//base", |
| 223 "//net:test_support", | 227 "//net:test_support", |
| 224 "//testing/gmock", | 228 "//testing/gmock", |
| 225 "//testing/gtest", | 229 "//testing/gtest", |
| 226 "//third_party/libyuv", | 230 "//third_party/libyuv", |
| 227 "//third_party/webrtc/modules/desktop_capture", | 231 "//third_party/webrtc/modules/desktop_capture", |
| 228 ] | 232 ] |
| 229 } | 233 } |
| OLD | NEW |