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("//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_options.gni") | 9 import("//remoting/remoting_options.gni") |
10 import("//remoting/remoting_version.gni") | 10 import("//remoting/remoting_version.gni") |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 "//remoting:remoting_perftests", | 60 "//remoting:remoting_perftests", |
61 "//remoting/host", | 61 "//remoting/host", |
62 ] | 62 ] |
63 | 63 |
64 if (!is_chromeos && !is_android) { | 64 if (!is_chromeos && !is_android) { |
65 deps += [ | 65 deps += [ |
66 "//remoting/host:remoting_native_messaging_manifests", | 66 "//remoting/host:remoting_native_messaging_manifests", |
67 "//remoting/host:remoting_start_host", | 67 "//remoting/host:remoting_start_host", |
68 "//remoting/host/it2me:remote_assistance_host", | 68 "//remoting/host/it2me:remote_assistance_host", |
69 ] | 69 ] |
| 70 |
| 71 if (is_win) { |
| 72 deps += [ "//remoting/host/it2me:remote_assistance_host_uiaccess" ] |
| 73 } |
70 } | 74 } |
71 | 75 |
72 # The same target is called differently on Linux. | 76 # The same target is called differently on Linux. |
73 # TODO(sergeyu): Rename it to remoting_native_messaging_host on all | 77 # TODO(sergeyu): Rename it to remoting_native_messaging_host on all |
74 # platforms. | 78 # platforms. |
75 if (is_win) { | 79 if (is_win) { |
76 deps += [ "//remoting/host:remoting_native_messaging_host" ] | 80 deps += [ "//remoting/host:remoting_native_messaging_host" ] |
77 } else if (!is_chromeos && !is_android) { | 81 } else if (!is_chromeos && !is_android) { |
78 deps += [ "//remoting/host:native_messaging_host" ] | 82 deps += [ "//remoting/host:native_messaging_host" ] |
79 } | 83 } |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 "//testing/gtest", | 217 "//testing/gtest", |
214 "//third_party/libjingle", | 218 "//third_party/libjingle", |
215 "//third_party/webrtc/modules/desktop_capture", | 219 "//third_party/webrtc/modules/desktop_capture", |
216 ] | 220 ] |
217 | 221 |
218 if (enable_webrtc) { | 222 if (enable_webrtc) { |
219 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 223 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
220 } | 224 } |
221 } | 225 } |
222 } | 226 } |
OLD | NEW |