| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/config/win/manifest.gni") | 7 import("//build/config/win/manifest.gni") |
| 8 import("//build/util/version.gni") | 8 import("//build/util/version.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 import("//remoting/remoting_enable.gni") | 10 import("//remoting/remoting_enable.gni") |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 } | 227 } |
| 228 | 228 |
| 229 if (is_android) { | 229 if (is_android) { |
| 230 sources -= [ | 230 sources -= [ |
| 231 "single_window_desktop_environment.cc", | 231 "single_window_desktop_environment.cc", |
| 232 "single_window_desktop_environment.h", | 232 "single_window_desktop_environment.h", |
| 233 ] | 233 ] |
| 234 } | 234 } |
| 235 } | 235 } |
| 236 | 236 |
| 237 source_set("test_support") { | 237 static_library("test_support") { |
| 238 testonly = true | 238 testonly = true |
| 239 | 239 |
| 240 sources = [ | 240 sources = [ |
| 241 "fake_desktop_environment.cc", | 241 "fake_desktop_environment.cc", |
| 242 "fake_desktop_environment.h", | 242 "fake_desktop_environment.h", |
| 243 "fake_host_extension.cc", | 243 "fake_host_extension.cc", |
| 244 "fake_host_extension.h", | 244 "fake_host_extension.h", |
| 245 "fake_host_status_monitor.h", | 245 "fake_host_status_monitor.h", |
| 246 "fake_host_status_monitor.h", | 246 "fake_host_status_monitor.h", |
| 247 "fake_mouse_cursor_monitor.cc", | 247 "fake_mouse_cursor_monitor.cc", |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 } | 857 } |
| 858 | 858 |
| 859 deps = [ | 859 deps = [ |
| 860 "//remoting/resources", | 860 "//remoting/resources", |
| 861 "//remoting/resources:strings", | 861 "//remoting/resources:strings", |
| 862 ] | 862 ] |
| 863 } | 863 } |
| 864 } | 864 } |
| 865 | 865 |
| 866 if (enable_me2me_host) { | 866 if (enable_me2me_host) { |
| 867 source_set("remoting_me2me_host_static") { | 867 static_library("remoting_me2me_host_static") { |
| 868 sources = [ | 868 sources = [ |
| 869 "pam_authorization_factory_posix.cc", | 869 "pam_authorization_factory_posix.cc", |
| 870 "pam_authorization_factory_posix.h", | 870 "pam_authorization_factory_posix.h", |
| 871 "remoting_me2me_host.cc", | 871 "remoting_me2me_host.cc", |
| 872 ] | 872 ] |
| 873 defines = [] | 873 defines = [] |
| 874 | 874 |
| 875 configs += [ "//remoting:version" ] | 875 configs += [ "//remoting:version" ] |
| 876 | 876 |
| 877 deps = [ | 877 deps = [ |
| (...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1555 root_build_dir), | 1555 root_build_dir), |
| 1556 rebase_path(outputs[0], root_build_dir), | 1556 rebase_path(outputs[0], root_build_dir), |
| 1557 ] | 1557 ] |
| 1558 } | 1558 } |
| 1559 } else { | 1559 } else { |
| 1560 group("remoting_host_installation") { | 1560 group("remoting_host_installation") { |
| 1561 } | 1561 } |
| 1562 } | 1562 } |
| 1563 } | 1563 } |
| 1564 } | 1564 } |
| OLD | NEW |