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) { |