Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(704)

Side by Side Diff: remoting/BUILD.gn

Issue 2185693003: Adding an It2Me host binary which is uiaccess enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@elevated
Patch Set: Merging! Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | remoting/host/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | remoting/host/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698