| 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/util/version.gni") | 7 import("//build/util/version.gni") |
| 8 import("//remoting/remoting_enable.gni") | 8 import("//remoting/remoting_enable.gni") |
| 9 import("//remoting/remoting_locales.gni") | 9 import("//remoting/remoting_locales.gni") |
| 10 import("//remoting/remoting_options.gni") | 10 import("//remoting/remoting_options.gni") |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 if (is_win) { | 187 if (is_win) { |
| 188 deps += [ | 188 deps += [ |
| 189 ":messages", | 189 ":messages", |
| 190 ":remoting_lib_idl", | 190 ":remoting_lib_idl", |
| 191 ] | 191 ] |
| 192 } | 192 } |
| 193 | 193 |
| 194 if (enable_webrtc) { | 194 if (enable_webrtc) { |
| 195 deps += [ "//third_party/webrtc/modules/desktop_capture" ] | 195 deps += [ "//third_party/webrtc/modules/desktop_capture" ] |
| 196 } | 196 } |
| 197 |
| 198 if (is_android) { |
| 199 sources -= [ |
| 200 "single_window_desktop_environment.cc", |
| 201 "single_window_desktop_environment.h", |
| 202 ] |
| 203 } |
| 197 } | 204 } |
| 198 | 205 |
| 199 source_set("test_support") { | 206 source_set("test_support") { |
| 200 testonly = true | 207 testonly = true |
| 201 | 208 |
| 202 sources = [ | 209 sources = [ |
| 203 "fake_desktop_environment.cc", | 210 "fake_desktop_environment.cc", |
| 204 "fake_desktop_environment.h", | 211 "fake_desktop_environment.h", |
| 205 "fake_host_extension.cc", | 212 "fake_host_extension.cc", |
| 206 "fake_host_extension.h", | 213 "fake_host_extension.h", |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 locale_dir = webapp_locale_dir | 675 locale_dir = webapp_locale_dir |
| 669 | 676 |
| 670 encoding = "utf-16" | 677 encoding = "utf-16" |
| 671 | 678 |
| 672 locales = remoting_locales | 679 locales = remoting_locales |
| 673 } | 680 } |
| 674 | 681 |
| 675 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi | 682 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi |
| 676 } | 683 } |
| 677 | 684 |
| 678 if (enable_remoting_host) { | 685 if (enable_remoting_host && !is_android) { |
| 679 executable("remoting_start_host") { | 686 executable("remoting_start_host") { |
| 680 sources = [ | 687 sources = [ |
| 681 "setup/host_starter.cc", | 688 "setup/host_starter.cc", |
| 682 "setup/host_starter.h", | 689 "setup/host_starter.h", |
| 683 "setup/start_host.cc", | 690 "setup/start_host.cc", |
| 684 ] | 691 ] |
| 685 | 692 |
| 686 deps = [ | 693 deps = [ |
| 687 "//build/config/sanitizers:deps", | 694 "//build/config/sanitizers:deps", |
| 688 "//remoting/host/setup", | 695 "//remoting/host/setup", |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 958 "//remoting/resources", | 965 "//remoting/resources", |
| 959 "//third_party/icu:icudata", | 966 "//third_party/icu:icudata", |
| 960 ] | 967 ] |
| 961 } | 968 } |
| 962 } else { | 969 } else { |
| 963 group("remoting_me2me_host_archive") { | 970 group("remoting_me2me_host_archive") { |
| 964 } | 971 } |
| 965 } | 972 } |
| 966 } | 973 } |
| 967 } | 974 } |
| OLD | NEW |