| 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("//media/media_options.gni") | 5 import("//media/media_options.gni") |
| 6 import("//remoting/build/config/remoting_build.gni") | 6 import("//remoting/build/config/remoting_build.gni") |
| 7 | 7 |
| 8 group("remoting_all") { | 8 group("remoting_all") { |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 if (is_win) { | 53 if (is_win) { |
| 54 deps += [ "//remoting/host/it2me:remote_assistance_host_uiaccess" ] | 54 deps += [ "//remoting/host/it2me:remote_assistance_host_uiaccess" ] |
| 55 } | 55 } |
| 56 } | 56 } |
| 57 | 57 |
| 58 if (is_win || (!is_chromeos && !is_android && !is_ios)) { | 58 if (is_win || (!is_chromeos && !is_android && !is_ios)) { |
| 59 deps += [ "//remoting/host:remoting_native_messaging_host" ] | 59 deps += [ "//remoting/host:remoting_native_messaging_host" ] |
| 60 } | 60 } |
| 61 | 61 |
| 62 if (is_linux && !is_chromeos) { | 62 if (is_linux && !is_chromeos) { |
| 63 deps += [ "//remoting/host/linux:remoting_dev_me2me_host" ] | 63 deps += [ |
| 64 "//remoting/host/linux:remoting_dev_me2me_host", |
| 65 "//remoting/host/linux:remoting_user_session", |
| 66 ] |
| 64 } | 67 } |
| 65 } | 68 } |
| 66 | 69 |
| 67 if (enable_me2me_host) { | 70 if (enable_me2me_host) { |
| 68 deps += [ "//remoting/host:remoting_me2me_host" ] | 71 deps += [ "//remoting/host:remoting_me2me_host" ] |
| 69 if (is_chrome_branded) { | 72 if (is_chrome_branded) { |
| 70 deps += [ "//remoting/host:remoting_me2me_host_archive" ] | 73 deps += [ "//remoting/host:remoting_me2me_host_archive" ] |
| 71 } | 74 } |
| 72 } | 75 } |
| 73 | 76 |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 if (is_win) { | 215 if (is_win) { |
| 213 defines += [ "_ALT_NO_EXCEPTIONS" ] | 216 defines += [ "_ALT_NO_EXCEPTIONS" ] |
| 214 | 217 |
| 215 libs += [ | 218 libs += [ |
| 216 "rpcrt4.lib", | 219 "rpcrt4.lib", |
| 217 "wtsapi32.lib", | 220 "wtsapi32.lib", |
| 218 ] | 221 ] |
| 219 } | 222 } |
| 220 } | 223 } |
| 221 } | 224 } |
| OLD | NEW |