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

Unified Diff: remoting/BUILD.gn

Issue 2018323002: Update remoting_all to include all remoting targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/BUILD.gn
diff --git a/remoting/BUILD.gn b/remoting/BUILD.gn
index 1dbb41e1f67359c37a5016c6d319a69cfc6838ea..0d77c07202464e17b5a11a53ee5b267849bf637b 100644
--- a/remoting/BUILD.gn
+++ b/remoting/BUILD.gn
@@ -60,16 +60,26 @@ group("remoting_all") {
"//remoting/host",
]
- if (!is_android) {
- deps += [ "//remoting/host:remoting_native_messaging_manifests" ]
- }
-
if (!is_chromeos && !is_android) {
deps += [
+ "//remoting/host:remoting_native_messaging_manifests",
"//remoting/host:remoting_start_host",
"//remoting/host/it2me:remote_assistance_host",
]
}
+
+ # The same target is called differently on Linux.
+ # TODO(sergeyu): Rename it to remoting_native_messaging_host on all
+ # platforms.
+ if (is_win) {
+ deps += [ "//remoting/host:remoting_native_messaging_host" ]
+ } else if (!is_chromeos && !is_android) {
+ deps += [ "//remoting/host:native_messaging_host" ]
+ }
+
+ if (is_linux && !is_chromeos) {
+ deps += [ "//remoting/host:remoting_dev_me2me_host" ]
+ }
}
if (enable_me2me_host) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698